PART I: Prepare and clean the data

First, install OWSLib package that will enable getting ZIP code (in German: PLZ) geodata from Berlin Open Data, a data portal provided by the local govt in Berlin

In [3]:
#conda install -c conda-forge owslib
In [4]:
# import key libraries
import numpy as np
import pandas as pd
import requests
import geocoder
from owslib.wfs import WebFeatureService
# import beautiful soup library for scraping
from bs4 import BeautifulSoup

German postcodes with coordinates are available here: https://www.wiwald.com/ds/kostenlose-liste-deutscher-postleitzahlen-und-zugehoeriger-orte/id/ww-german-postal-codes. I have downloaded a json file and will convert it into a pandas dataframe.

In [66]:
df_plz=pd.read_json('ww-german-postal-codes.json', orient='index')
df_plz.head()
Out[66]:
primary_key zipcode city state community latitude longitude
1 1 1945 Grünewald Brandenburg Landkreis Oberspreewald-Lausitz 51.4000 14.0000
2 2 1945 Lindenau Brandenburg Landkreis Oberspreewald-Lausitz 51.4000 13.7333
3 3 1945 Hohenbocka Brandenburg Landkreis Oberspreewald-Lausitz 51.4310 14.0098
4 4 1945 Schwarzbach Brandenburg Landkreis Oberspreewald-Lausitz 51.4500 13.9333
5 5 1945 Guteborn Brandenburg Landkreis Oberspreewald-Lausitz 51.4167 13.9333

Now, this is for whole Germany - we are only interested in Berlin, so we remove all the tip codes (PLZ in German) for other towns

In [265]:
df_plz=df_plz.loc[df_plz['state'] == 'Berlin']
# df_plz.head()
df_plz.head()
Out[265]:
primary_key zipcode city state community latitude longitude
1288 1288 10115 Berlin Berlin Berlin, Stadt 52.5323 13.3846
1289 1289 10117 Berlin Berlin Berlin, Stadt 52.5170 13.3872
1290 1290 10119 Berlin Berlin Berlin, Stadt 52.5305 13.4053
1291 1291 10178 Berlin Berlin Berlin, Stadt 52.5213 13.4096
1292 1292 10179 Berlin Berlin Berlin, Stadt 52.5122 13.4164

Now we would like to add 2 things to this dataframe: 1- The population per PLZ, and 2- Neighborhood per PLZ. these are available from the local statistics agency in Berlin: https://www.statistik-berlin-brandenburg.de/publikationen/Stat_Berichte/2018/SB_A01-05-00_2017h02_BE.xlsx. I have made a csv from the relevant worksheet.

In [93]:
df_einw=pd.read_csv('PLZ_Kiez_Einwohner.csv', delimiter =';', sep=';')
df_einw.head()
#df_einw.shape
Out[93]:
PLZ Kiez Einwohner
0 10115 Mitte 26274
1 10117 Mitte 15531
2 10119 Mitte 15064
3 10119 Pankow 4606
4 10178 Friedrichsh.-Kreuzb. 81

Now, as there are instances of more than one neighborhood (in German: Kiez) per PLZ, as for example PLZ 10119 above, we aggregate that information in the rows: Each row shows one PLZ with its population and the corresponding neighborhood(s)

In [96]:
df_einw_clean=df_einw.groupby(['PLZ']).agg({'Einwohner':'sum', 'Kiez':'sum'})
df_einw_clean.head(5)
#df_einw_clean.sum(axis=0)
#df_einw_clean.shape
Out[96]:
Einwohner Kiez
PLZ
10115 26274 Mitte
10117 15531 Mitte
10119 19670 MittePankow
10178 14466 Friedrichsh.-Kreuzb.Mitte
10179 23970 Friedrichsh.-Kreuzb.Mitte

Now that we have the population and the geodata, we would be interested in the purchasing power per neighborhood, ideally per PLZ code. There is a webpage of a German newspaper, Bild, showing that info as a table. Although the information is older (2013), the relative purchasing power across neighborhoods is quite stable so we should be able to use it for our purposes. Here's the link: https://www.bild.de/regional/berlin/einkommen/kaufkraft-liste-berliner-kieze-28373092.bild.html . We can scrape the tables using Beautiful Soup.

In [114]:
page = requests.get('https://www.bild.de/regional/berlin/einkommen/kaufkraft-liste-berliner-kieze-28373092.bild.html')
soup = BeautifulSoup(page.content, 'html.parser')
table = soup.find_all('table')
df_income=pd.DataFrame()
for i in range(12):
    data=pd.read_html(str(table))[i]
    df_income=df_income.append(data)
#df_income = pd.read_html(str(table))[11]
df_income.head()
Out[114]:
PLZ, Lage Kaufkraft pro Haushalt* Rang**
0 10585 Deutsche Oper​ 3015 Euro 45
1 10587 TU/Otto-Suhr-Allee​ 2753 Euro 81
2 10589 Mierendorffplatz​ 2718 Euro 90
3 10623 Savignyplatz​ 3545 Euro 15
4 10625 Karl-August-Platz​ 3048 Euro 40
In [115]:
df_income
Out[115]:
PLZ, Lage Kaufkraft pro Haushalt* Rang**
0 10585 Deutsche Oper​ 3015 Euro 45
1 10587 TU/Otto-Suhr-Allee​ 2753 Euro 81
2 10589 Mierendorffplatz​ 2718 Euro 90
3 10623 Savignyplatz​ 3545 Euro 15
4 10625 Karl-August-Platz​ 3048 Euro 40
... ... ... ...
10 12557 Wendenschloß​ 2477 Euro 133
11 12559 Müggelheim​ 2490 Euro 130
12 12587 Friedrichshagen​ 2405 Euro 147
13 12589 Rahnsdorf ​ 3164 Euro 30
14 Bezirk 2378 Euro NaN

202 rows × 3 columns

Doesn't look bad, but we have to clean it a little, as PLZ is shown with location information, each neighboprhood has its average value showing up as duplicates and the income figure is shown with string "Euro". Let's clean this up:

In [118]:
df_income.drop_duplicates(subset=['PLZ, Lage'], keep=False, inplace=True)
df_income.shape
Out[118]:
(190, 3)
In [737]:
new = df_income['PLZ, Lage'].str.split(" ", n = 1, expand = True)
new2 = df_income['Kaufkraft pro Haushalt*'].str.split(n = 0, expand = True)
df_income['PLZ']=new[0]
df_income['income']=new2[0]
df_income.head()
Out[737]:
PLZ, Lage Kaufkraft pro Haushalt* Rang** PLZ Kaufkraft income
0 10585 Deutsche Oper​ 3015 Euro 45 10585 3015 3015
1 10587 TU/Otto-Suhr-Allee​ 2753 Euro 81 10587 2753 2753
2 10589 Mierendorffplatz​ 2718 Euro 90 10589 2718 2718
3 10623 Savignyplatz​ 3545 Euro 15 10623 3545 3545
4 10625 Karl-August-Platz​ 3048 Euro 40 10625 3048 3048

Now 2 more things to get before we start our cluster analysis: 1- Political leanings per PLZ / neighborhood and 2- Number of coffee shops per neighborhood / PLZ. Plitical leanings. Results of the last election in Berlin are available under https://www.govdata.de/web/guest/daten/-/details/wahlen-in-berlin-2016-abgeordnetenhaus-und-bezirksverordnetenversammlungen-endgultiges-ergebnis . As the election regions are not identical with PLZ, I had to add a PLZ column into the data, using the mapping available here: https://www.wahlen-berlin.de/wahlen/BE2016/Wahlkreiseinteil/wahlkreiseinteil.asp. I saved the csv - let's see how it looks:

In [183]:
df_wahlen = pd.read_csv('Berlin_AH16_W1.csv', delimiter =';', sep=';')
df_wahlen.shape
Out[183]:
(2432, 62)

Already looking good - but we have to clean up a bit: Postal votes cannot be mapped to PLZ so we have to get rid of them. Then we need to group the data by PLZ (the original df has more than 2000 rows, each row representing an election location.

In [188]:
df_wahlen.dropna(subset=['PLZ'], inplace=True)
In [189]:
df_wahlen.head()
Out[189]:
Adresse Stimmart Bezirksnummer Bezirksname Wahlbezirk Wahlbezirksart PLZ Abgeordneten-\nhauswahlkreis Bundestags-\nwahlkreis Berlin\nOstWest ... EB 9 EB 10 EB 11 EB 12 EB 13 EB 14 EB 15 EB 16 EB 17 EB 18
37 01W100 Erststimme 1 Mitte 100 Urnenwahlbezirk 10557.0 1 75 W ... 0 0 0 0 0 0 0 0 0 0
38 01W101 Erststimme 1 Mitte 101 Urnenwahlbezirk 10115.0 1 75 O ... 0 0 0 0 0 0 0 0 0 0
39 01W102 Erststimme 1 Mitte 102 Urnenwahlbezirk 10115.0 1 75 O ... 0 0 0 0 0 0 0 0 0 0
40 01W103 Erststimme 1 Mitte 103 Urnenwahlbezirk 10115.0 1 75 O ... 0 0 0 0 0 0 0 0 0 0
41 01W104 Erststimme 1 Mitte 104 Urnenwahlbezirk 10115.0 1 75 O ... 0 0 0 0 0 0 0 0 0 0

5 rows × 62 columns

In [190]:
df_wahlen=df_wahlen.astype({'PLZ': int})
df_wahlen.head()
Out[190]:
Adresse Stimmart Bezirksnummer Bezirksname Wahlbezirk Wahlbezirksart PLZ Abgeordneten-\nhauswahlkreis Bundestags-\nwahlkreis Berlin\nOstWest ... EB 9 EB 10 EB 11 EB 12 EB 13 EB 14 EB 15 EB 16 EB 17 EB 18
37 01W100 Erststimme 1 Mitte 100 Urnenwahlbezirk 10557 1 75 W ... 0 0 0 0 0 0 0 0 0 0
38 01W101 Erststimme 1 Mitte 101 Urnenwahlbezirk 10115 1 75 O ... 0 0 0 0 0 0 0 0 0 0
39 01W102 Erststimme 1 Mitte 102 Urnenwahlbezirk 10115 1 75 O ... 0 0 0 0 0 0 0 0 0 0
40 01W103 Erststimme 1 Mitte 103 Urnenwahlbezirk 10115 1 75 O ... 0 0 0 0 0 0 0 0 0 0
41 01W104 Erststimme 1 Mitte 104 Urnenwahlbezirk 10115 1 75 O ... 0 0 0 0 0 0 0 0 0 0

5 rows × 62 columns

In [194]:
df_wahlen.columns
Out[194]:
Index(['Adresse', 'Stimmart', 'Bezirksnummer', 'Bezirksname', 'Wahlbezirk',
       'Wahlbezirksart', 'PLZ', 'Abgeordneten-\nhauswahlkreis',
       'Bundestags-\nwahlkreis', 'Berlin\nOstWest',
       'Wahlberechtigte insgesamt', 'Wahlberechtigte A1', 'Wahlberechtigte A2',
       'Wahlberechtigte A3', 'Wähler', 'Wähler B1', 'Ungültige Stimmen',
       'Gültige Stimmen', 'SPD', 'CDU', 'GRÜNE', 'DIE LINKE', 'PIRATEN', 'NPD',
       'FDP', 'Tierschutzpartei', 'pro Deutschland', 'Die PARTEI', 'BIG',
       'DKP', 'ödp', 'PSG', 'BüSo', 'B', 'DL', 'ALFA', 'Tierschutzallianz',
       'AfD', 'DIE EINHEIT', 'DIE VIOLETTEN', 'Graue Panther',
       'MENSCHLICHE WELT', 'MIETERPARTEI', 'Gesundheits-\nforschung', 'EB 1',
       'EB 2', 'EB 3', 'EB 4', 'EB 5', 'EB 6', 'EB 7', 'EB 8', 'EB 9', 'EB 10',
       'EB 11', 'EB 12', 'EB 13', 'EB 14', 'EB 15', 'EB 16', 'EB 17', 'EB 18'],
      dtype='object')
In [210]:
df_wahlen=df_wahlen[['Bezirksname', 'PLZ', 'Gültige Stimmen', 'SPD', 'CDU', 'GRÜNE', 'DIE LINKE',
                             'FDP', 'AfD']]
In [211]:
df_wahlen.head()
Out[211]:
Bezirksname PLZ Gültige Stimmen SPD CDU GRÜNE DIE LINKE FDP AfD
37 Mitte 10557 461 129 83 88 75 13 59
38 Mitte 10115 707 169 143 178 83 57 58
39 Mitte 10115 566 130 112 131 65 58 60
40 Mitte 10115 635 140 92 192 92 61 38
41 Mitte 10115 600 148 99 167 66 66 37

So what we did here is we kept the columns with the main parties as well as total number of valid votes. SPD = social democrats, CDU= conservatives , Grüne = greens, linke = socialists, fdp= liberals, afd= far right. Let's group by PLZ to get what we need: Percentages per each party per PLZ.

In [212]:
df_wahlen_clean=df_wahlen.groupby(['PLZ']).agg({'Bezirksname':'max', 'Gültige Stimmen':'sum', 'SPD':'sum'
                                               ,'CDU':'sum', 'GRÜNE':'sum', 'DIE LINKE':'sum', 'FDP':'sum',
                                               'AfD':'sum'})
df_wahlen_clean['SPD']=df_wahlen_clean['SPD']/df_wahlen_clean['Gültige Stimmen']
df_wahlen_clean['CDU']=df_wahlen_clean['CDU']/df_wahlen_clean['Gültige Stimmen']
df_wahlen_clean['GRÜNE']=df_wahlen_clean['GRÜNE']/df_wahlen_clean['Gültige Stimmen']
df_wahlen_clean['DIE LINKE']=df_wahlen_clean['DIE LINKE']/df_wahlen_clean['Gültige Stimmen']
df_wahlen_clean['FDP']=df_wahlen_clean['FDP']/df_wahlen_clean['Gültige Stimmen']
df_wahlen_clean['AfD']=df_wahlen_clean['AfD']/df_wahlen_clean['Gültige Stimmen']
df_wahlen_clean.head()
Out[212]:
Bezirksname Gültige Stimmen SPD CDU GRÜNE DIE LINKE FDP AfD
PLZ
10115 Mitte 2958 0.244760 0.168357 0.262677 0.125085 0.090264 0.078431
10117 Mitte 8971 0.230521 0.156170 0.177461 0.216475 0.072902 0.113700
10119 Pankow 3563 0.213865 0.122930 0.336514 0.174011 0.074937 0.044906
10178 Mitte 1544 0.253238 0.120466 0.102332 0.312824 0.040803 0.139896
10179 Mitte 7142 0.259311 0.113974 0.145477 0.279194 0.041025 0.125175

Now we're ready to get the final variable for our analysis: number of cafés per PLZ. For this, we're going to use the Foursquare API.

In [235]:
import json
In [278]:
CLIENT_ID = 'XDP1E1K13BDFE051QJR1RGQSQITXQOFY2FC2KR4ECKTO5CGX'
CLIENT_SECRET = 'TOJPKLGKIKNDEOUEWMABC3OHCUPDTD5ACKLTRWI4C5SUPYYA' 
VERSION = '20180605' 
LIMIT = 100 # we want 100 results per PLZ
radius = 500 # we want to limit the radius from PLZ centre to 500m
categoryId = '4bf58dd8d48988d16d941735' # 4bf58dd8d48988d1e0931735' # IDs for café & coffee shop
In [280]:
def getNearbyVenues(names, latitudes, longitudes, radius=radius, categoryId=categoryId):
    
    venues_list=[]
    for name, lat, lng in zip(names, latitudes, longitudes):
        # print(name)
            
        # create the API request URL
        url = 'https://api.foursquare.com/v2/venues/explore?&client_id={}&client_secret={}&v={}&ll={},{}&radius={}&limit={}&categoryId={}'.format(
            CLIENT_ID, 
            CLIENT_SECRET, 
            VERSION, 
            lat, 
            lng, 
            radius, 
            LIMIT,
            categoryId)
            
        # make the GET request
        results = requests.get(url).json()
        
        # return only relevant information for each nearby venue
        venues_list.append(results)
    
    return(venues_list)

Now let's get the coffee shops per PLZ from foursquare:

In [281]:
berlin_cafes=getNearbyVenues(names=df_plz['zipcode'],
                                   latitudes=df_plz['latitude'],
                                   longitudes=df_plz['longitude']
                                  )
berlin_cafes
Out[281]:
[{'meta': {'code': 200, 'requestId': '5fb16e69334c670565cb8409'},
  'response': {'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 15,
   'suggestedBounds': {'ne': {'lat': 52.5368000045, 'lng': 13.39198368973932},
    'sw': {'lat': 52.5277999955, 'lng': 13.377216310260682}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fd0f671e4b0044b25a40009',
        'name': 'Oslo Kaffebar',
        'location': {'address': 'Eichendorffstr. 13',
         'crossStreet': 'Invalidenstr.',
         'lat': 52.53102915837446,
         'lng': 13.386889100074768,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53102915837446,
           'lng': 13.386889100074768}],
         'distance': 209,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eichendorffstr. 13 (Invalidenstr.)',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fd0f671e4b0044b25a40009-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b15069ef964a520eaa723e3',
        'name': 'Café Bondi',
        'location': {'address': 'Eichendorffstr. 5',
         'lat': 52.530319398010086,
         'lng': 13.387454917590597,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.530319398010086,
           'lng': 13.387454917590597}],
         'distance': 293,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eichendorffstr. 5', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b15069ef964a520eaa723e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b5760d7f964a520a23428e3',
        'name': 'Brasserie La Bonne Franquette',
        'location': {'address': 'Chausseestr. 110',
         'crossStreet': 'Invalidenstr.',
         'lat': 52.53110165668639,
         'lng': 13.382489160805864,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53110165668639,
           'lng': 13.382489160805864}],
         'distance': 195,
         'postalCode': '10115',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestr. 110 (Invalidenstr.)',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '57552622'}},
       'referralId': 'e-0-4b5760d7f964a520a23428e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d81fa2a153d7800087d5c4c',
        'name': 'Espresso House',
        'location': {'lat': 52.53066,
         'lng': 13.383123,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53066,
           'lng': 13.383123}],
         'distance': 208,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d81fa2a153d7800087d5c4c-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '577638e1498e545ee0d166f8',
        'name': '19grams',
        'location': {'address': 'Chausseestr. 36',
         'lat': 52.53303691027667,
         'lng': 13.380054366842362,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53303691027667,
           'lng': 13.380054366842362}],
         'distance': 318,
         'postalCode': '10115',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestr. 36',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-577638e1498e545ee0d166f8-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58b55329fc73d402335a0e73',
        'name': 'R/D',
        'location': {'address': 'Chausseestr. 19',
         'lat': 52.5302338636797,
         'lng': 13.383697271347046,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5302338636797,
           'lng': 13.383697271347046}],
         'distance': 237,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestr. 19',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '486971060'}},
       'referralId': 'e-0-58b55329fc73d402335a0e73-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fcfbbe7e4b087291e62d8f2',
        'name': 'Karaca',
        'location': {'address': 'Chausseestr. 106',
         'lat': 52.53172205686423,
         'lng': 13.381594054043058,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53172205686423,
           'lng': 13.381594054043058}],
         'distance': 213,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestr. 106',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fcfbbe7e4b087291e62d8f2-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d62478cd7206ea8223609f2',
        'name': 'Mr. Vertigo',
        'location': {'address': 'Chausseestraße 17',
         'lat': 52.52993302826821,
         'lng': 13.383883833867955,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52993302826821,
           'lng': 13.383883833867955}],
         'distance': 267,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestraße 17',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d62478cd7206ea8223609f2-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ccd2bea2dc4370432c7cc08',
        'name': 'Bäckerei Café Tuna',
        'location': {'address': 'Chausseestr. 17',
         'lat': 52.52986139370388,
         'lng': 13.383913350070713,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52986139370388,
           'lng': 13.383913350070713}],
         'distance': 275,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestr. 17',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ccd2bea2dc4370432c7cc08-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b011b31f964a520bd4122e3',
        'name': "MarcAnn's",
        'location': {'address': 'Invalidenstr. 112',
         'lat': 52.530484,
         'lng': 13.383477,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.530484,
           'lng': 13.383477}],
         'distance': 215,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Invalidenstr. 112',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b011b31f964a520bd4122e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5352346a498e9450d996c6fc',
        'name': 'Neumond',
        'location': {'address': 'Borsigstr. 28',
         'crossStreet': 'Tieckstr.',
         'lat': 52.52968027515441,
         'lng': 13.389570174524566,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52968027515441,
           'lng': 13.389570174524566}],
         'distance': 445,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Borsigstr. 28 (Tieckstr.)',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '445927691'}},
       'referralId': 'e-0-5352346a498e9450d996c6fc-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e364f171838f85189b0108c',
        'name': 'Mauercafe',
        'location': {'address': 'Bernauer Straße 117',
         'lat': 52.53422,
         'lng': 13.387949,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53422,
           'lng': 13.387949}],
         'distance': 311,
         'postalCode': '13355',
         'cc': 'DE',
         'neighborhood': 'Gesundbrunnen',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bernauer Straße 117',
          '13355 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e364f171838f85189b0108c-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a7ece18cf72a03447b14d81',
        'name': 'Baffel‘s',
        'location': {'address': 'Gartenstraße 92',
         'lat': 52.531989,
         'lng': 13.38917,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.531989,
           'lng': 13.38917}],
         'distance': 311,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gartenstraße 92',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a7ece18cf72a03447b14d81-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50acc938e4b0592296dbe885',
        'name': 'Cafe Si',
        'location': {'address': 'Invalidenstr.',
         'lat': 52.531465230280126,
         'lng': 13.385840038910112,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.531465230280126,
           'lng': 13.385840038910112}],
         'distance': 125,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Invalidenstr.', '10115 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50acc938e4b0592296dbe885-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '504c7b8ae4b0b0e067cb8f75',
        'name': 'Ground Coffee',
        'location': {'address': 'Chausseestr. 101',
         'crossStreet': 'Habersaathstr.',
         'lat': 52.53258419046969,
         'lng': 13.380454252378073,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53258419046969,
           'lng': 13.380454252378073}],
         'distance': 282,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestr. 101 (Habersaathstr.)',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-504c7b8ae4b0b0e067cb8f75-14'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6983e39e1eddad13d3'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Unter den Linden',
   'headerFullLocation': 'Unter den Linden, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 23,
   'suggestedBounds': {'ne': {'lat': 52.521500004500005,
     'lng': 13.394581118319113},
    'sw': {'lat': 52.5124999955, 'lng': 13.379818881680887}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4afa6086f964a520c91722e3',
        'name': 'Café Einstein',
        'location': {'address': 'Unter den Linden 42',
         'crossStreet': 'Neustädtische Kirchstr.',
         'lat': 52.51710878421212,
         'lng': 13.38582158088684,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51710878421212,
           'lng': 13.38582158088684}],
         'distance': 94,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 42 (Neustädtische Kirchstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4afa6086f964a520c91722e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b5099f3f964a520f82827e3',
        'name': 'Ritter Sport Bunte Schokowelt',
        'location': {'address': 'Französische Str. 24',
         'lat': 52.51490646289965,
         'lng': 13.390378033623746,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51490646289965,
           'lng': 13.390378033623746}],
         'distance': 317,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Französische Str. 24',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '52f2ab2ebcbc57f1066b8b31',
          'name': 'Chocolate Shop',
          'pluralName': 'Chocolate Shops',
          'shortName': 'Chocolate Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/candystore_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b5099f3f964a520f82827e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51c9d87e2fc6872f7cfe43b9',
        'name': 'The Digital Eatery',
        'location': {'address': 'Unter den Linden 17',
         'crossStreet': 'Charlottenstr.',
         'lat': 52.516881018727545,
         'lng': 13.39053134649409,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516881018727545,
           'lng': 13.39053134649409}],
         'distance': 226,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 17 (Charlottenstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51c9d87e2fc6872f7cfe43b9-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50d72f14e4b0cc2e84b9e862',
        'name': 'Café Ursprung',
        'location': {'address': 'Friedrichstr. 90',
         'lat': 52.51828937830739,
         'lng': 13.389474019724089,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51828937830739,
           'lng': 13.389474019724089}],
         'distance': 210,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedrichstr. 90',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50d72f14e4b0cc2e84b9e862-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b2237d3f964a5207a4424e3',
        'name': 'Zimt & Zucker',
        'location': {'address': 'Schiffbauerdamm 12',
         'lat': 52.520654,
         'lng': 13.384299,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520654,
           'lng': 13.384299}],
         'distance': 451,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schiffbauerdamm 12',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b2237d3f964a5207a4424e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d2c7f80068e8cfa3defec4c',
        'name': 'Flamingo Fresh Food Bar',
        'location': {'address': 'Neustädtische Kirchstr. 8',
         'crossStreet': 'Georgenstr.',
         'lat': 52.51954067986944,
         'lng': 13.385424613952637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51954067986944,
           'lng': 13.385424613952637}],
         'distance': 307,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Neustädtische Kirchstr. 8 (Georgenstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1c5941735',
          'name': 'Sandwich Place',
          'pluralName': 'Sandwich Places',
          'shortName': 'Sandwiches',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/deli_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '66995457'}},
       'referralId': 'e-0-4d2c7f80068e8cfa3defec4c-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c20b5624d4a20a1121a9b70',
        'name': 'Café Chocolaterie Manon',
        'location': {'address': 'Jägerstr. 61',
         'crossStreet': 'Quatier 206, 2. UG',
         'lat': 52.51379551509097,
         'lng': 13.3895079864266,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51379551509097,
           'lng': 13.3895079864266}],
         'distance': 389,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jägerstr. 61 (Quatier 206, 2. UG)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c20b5624d4a20a1121a9b70-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ce3bf121594236a88d8f849',
        'name': 'ZDF Cafe',
        'location': {'address': 'Unter der Linden 36',
         'lat': 52.51732724502541,
         'lng': 13.38696115011947,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51732724502541,
           'lng': 13.38696115011947}],
         'distance': 39,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter der Linden 36',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ce3bf121594236a88d8f849-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '501d23c1e4b07ccc3841a6a3',
        'name': 'Miele Gallery Berlin',
        'location': {'address': 'Unter den Linden 26',
         'lat': 52.51741570045135,
         'lng': 13.388124120999858,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51741570045135,
           'lng': 13.388124120999858}],
         'distance': 77,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 26',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-501d23c1e4b07ccc3841a6a3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d2b35792f61e8002363c8a3',
        'name': 'Coffee Roasters Berlin',
        'location': {'lat': 52.517536,
         'lng': 13.387778,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517536,
           'lng': 13.387778}],
         'distance': 71,
         'cc': 'DE',
         'neighborhood': 'Unter den Linden',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d2b35792f61e8002363c8a3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50db0dc3e4b07ec199198104',
        'name': 'Berliner Kindl',
        'location': {'lat': 52.51707627818953,
         'lng': 13.390259020454312,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51707627818953,
           'lng': 13.390259020454312}],
         'distance': 207,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50db0dc3e4b07ec199198104-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b3faf66f964a52029ac25e3',
        'name': 'Via Nova II',
        'location': {'address': 'Universitätsstr. 2',
         'lat': 52.51972132929154,
         'lng': 13.392233957313566,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51972132929154,
           'lng': 13.392233957313566}],
         'distance': 456,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Universitätsstr. 2',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '565111580'}},
       'referralId': 'e-0-4b3faf66f964a52029ac25e3-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bcb25f8fb84c9b626321e3e',
        'name': 'Refugium',
        'location': {'address': 'Gendarmenmarkt 5',
         'lat': 52.51419033173704,
         'lng': 13.391906172037125,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51419033173704,
           'lng': 13.391906172037125}],
         'distance': 446,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gendarmenmarkt 5',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bcb25f8fb84c9b626321e3e-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c3d57cc7d002d7f9ab9af18',
        'name': "Tim's Bakery and Deli",
        'location': {'address': 'Bebelplatz 1',
         'lat': 52.516550985097936,
         'lng': 13.393534512490923,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516550985097936,
           'lng': 13.393534512490923}],
         'distance': 432,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bebelplatz 1', '10117 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c3d57cc7d002d7f9ab9af18-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a5208d4521e3',
        'name': 'Café Lebensart',
        'location': {'address': 'Unter den Linden 69 a+b',
         'lat': 52.516444888842784,
         'lng': 13.382149652830892,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516444888842784,
           'lng': 13.382149652830892}],
         'distance': 347,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 69 a+b',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a5208d4521e3-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5368dc27498e090c7a4b924d',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Friedrichstr. 71',
         'lat': 52.51355016052156,
         'lng': 13.389435179357283,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51355016052156,
           'lng': 13.389435179357283}],
         'distance': 412,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedrichstr. 71',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5368dc27498e090c7a4b924d-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc6f97c14d795217f7d66e9',
        'name': 'Café Leon',
        'location': {'address': 'S-Bahnbogen 202',
         'crossStreet': 'Georgenstr.',
         'lat': 52.5199380090885,
         'lng': 13.38913886404926,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5199380090885,
           'lng': 13.38913886404926}],
         'distance': 352,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['S-Bahnbogen 202 (Georgenstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc6f97c14d795217f7d66e9-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c2f1ef17cc0c9b6a726eb9a',
        'name': 'Pure Origins',
        'location': {'address': 'Georgenstr. 193',
         'lat': 52.520172,
         'lng': 13.391058,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520172,
           'lng': 13.391058}],
         'distance': 439,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Georgenstr. 193',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c2f1ef17cc0c9b6a726eb9a-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55b7b26f498e48cec7faf026',
        'name': "Adam's frischer schmeckt",
        'location': {'address': 'Georgenstr. 12',
         'lat': 52.51996960838,
         'lng': 13.388890196579986,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51996960838,
           'lng': 13.388890196579986}],
         'distance': 349,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Georgenstr. 12',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55b7b26f498e48cec7faf026-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b1d2d5ef964a520950c24e3',
        'name': 'Meyerbeer Coffee',
        'location': {'address': 'Universitätsstr. 2/3a',
         'crossStreet': 'Georgenstr.',
         'lat': 52.520015711206824,
         'lng': 13.392046413856676,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520015711206824,
           'lng': 13.392046413856676}],
         'distance': 469,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Universitätsstr. 2/3a (Georgenstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b1d2d5ef964a520950c24e3-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50dc80a8e4b0c1f301668c2d',
        'name': 'Cafe Quartier 206',
        'location': {'address': 'Friedrichstraße 71',
         'lat': 52.51356234585043,
         'lng': 13.390043789330294,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51356234585043,
           'lng': 13.390043789330294}],
         'distance': 428,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedrichstraße 71',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50dc80a8e4b0c1f301668c2d-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '508a818fe4b032d8bd844def',
        'name': 'Cafeteria HU Berlin',
        'location': {'address': 'Unter den Linden 6',
         'lat': 52.51917131876533,
         'lng': 13.392722255761806,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51917131876533,
           'lng': 13.392722255761806}],
         'distance': 445,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 6', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-508a818fe4b032d8bd844def-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adf6b3bf964a520687a21e3',
        'name': 'Vapiano',
        'location': {'address': 'Mittelstr. 51-52',
         'lat': 52.51789549270432,
         'lng': 13.387795686721802,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51789549270432,
           'lng': 13.387795686721802}],
         'distance': 107,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mittelstr. 51-52',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d110941735',
          'name': 'Italian Restaurant',
          'pluralName': 'Italian Restaurants',
          'shortName': 'Italian',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/italian_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adf6b3bf964a520687a21e3-22'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6ae998a41dc43a5101'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 46,
   'suggestedBounds': {'ne': {'lat': 52.535000004500006,
     'lng': 13.412683387098978},
    'sw': {'lat': 52.5259999955, 'lng': 13.397916612901023}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcfbdaf964a520296321e3',
        'name': 'Café Fleury',
        'location': {'address': 'Weinbergsweg 20',
         'lat': 52.5312038400892,
         'lng': 13.402489630320915,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5312038400892,
           'lng': 13.402489630320915}],
         'distance': 205,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 20',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcfbdaf964a520296321e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adf59d3f964a520bc7921e3',
        'name': 'Cafe Galão',
        'location': {'address': 'Weinbergsweg 8',
         'lat': 52.53111966672184,
         'lng': 13.402515528856984,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53111966672184,
           'lng': 13.402515528856984}],
         'distance': 200,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 8',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adf59d3f964a520bc7921e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c79404f911fc4002c4ca423',
        'name': 'Zeit für Brot',
        'location': {'address': 'Weinbergsweg 2',
         'lat': 52.53039378519227,
         'lng': 13.40185168833682,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53039378519227,
           'lng': 13.40185168833682}],
         'distance': 233,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 2',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c79404f911fc4002c4ca423-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcf782f964a520016321e3',
        'name': 'St. Oberholz',
        'location': {'address': 'Rosenthaler Str. 72',
         'crossStreet': 'Torstr.',
         'lat': 52.52955041013571,
         'lng': 13.401651193057493,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52955041013571,
           'lng': 13.401651193057493}],
         'distance': 268,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rosenthaler Str. 72 (Torstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcf782f964a520016321e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59e1c96831ac6c348006621b',
        'name': 'Rapha Berlin',
        'location': {'address': 'Alte Schönhauser Str. 5',
         'lat': 52.52760524020057,
         'lng': 13.408639413642092,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52760524020057,
           'lng': 13.408639413642092}],
         'distance': 393,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alte Schönhauser Str. 5',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59e1c96831ac6c348006621b-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '514c4427e4b0ccf66167d95a',
        'name': 'lekkamokka',
        'location': {'address': 'Rosenthaler Str. 62',
         'lat': 52.52759098626332,
         'lng': 13.403069272031187,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52759098626332,
           'lng': 13.403069272031187}],
         'distance': 357,
         'postalCode': '10119',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rosenthaler Str. 62',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-514c4427e4b0ccf66167d95a-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520a34621e3',
        'name': 'Lass uns Freunde bleiben',
        'location': {'address': 'Choriner Str. 12',
         'crossStreet': 'Zionskirchstr.',
         'lat': 52.53311438663343,
         'lng': 13.407182693481444,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53311438663343,
           'lng': 13.407182693481444}],
         'distance': 317,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Choriner Str. 12 (Zionskirchstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520a34621e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5979ab6bb23dfa060294c9f2',
        'name': 'What do you fancy love?',
        'location': {'address': 'Linienstr. 41',
         'lat': 52.528240176294645,
         'lng': 13.409489161621611,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.528240176294645,
           'lng': 13.409489161621611}],
         'distance': 379,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Linienstr. 41', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5979ab6bb23dfa060294c9f2-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b2b4426f964a52077b524e3',
        'name': 'Mein Haus am See',
        'location': {'address': 'Brunnenstr 197-198',
         'lat': 52.530006,
         'lng': 13.400885,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.530006,
           'lng': 13.400885}],
         'distance': 303,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brunnenstr 197-198',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b2b4426f964a52077b524e3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57adf310498ebcb157fbfef1',
        'name': 'FECHTNER',
        'location': {'address': 'Torstr. 114',
         'lat': 52.52972959769305,
         'lng': 13.402440129004097,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52972959769305,
           'lng': 13.402440129004097}],
         'distance': 211,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torstr. 114', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '433765089'}},
       'referralId': 'e-0-57adf310498ebcb157fbfef1-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5968acd49deb7d6f72c9bdc5',
        'name': "HERMANN'S",
        'location': {'address': 'Torstr. 116-118',
         'crossStreet': 'Rosenthaler Platz',
         'lat': 52.52965363941756,
         'lng': 13.402354970073603,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52965363941756,
           'lng': 13.402354970073603}],
         'distance': 220,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torstr. 116-118 (Rosenthaler Platz)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '476781224'}},
       'referralId': 'e-0-5968acd49deb7d6f72c9bdc5-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4afd913bf964a520a72822e3',
        'name': 'Café Lois',
        'location': {'address': 'Linienstr. 60',
         'lat': 52.52882978481763,
         'lng': 13.405344598934164,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52882978481763,
           'lng': 13.405344598934164}],
         'distance': 185,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Linienstr. 60', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4afd913bf964a520a72822e3-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520be4621e3',
        'name': 'Gorki Park',
        'location': {'address': 'Weinbergsweg 25',
         'lat': 52.53044598224219,
         'lng': 13.40182675364703,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53044598224219,
           'lng': 13.40182675364703}],
         'distance': 235,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 25',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520be4621e3-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4afacb44f964a520b91822e3',
        'name': 'Weinerei Forum',
        'location': {'address': 'Fehrbelliner Str. 57',
         'crossStreet': 'Veteranenstr.',
         'lat': 52.53358881376712,
         'lng': 13.402760662517966,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53358881376712,
           'lng': 13.402760662517966}],
         'distance': 384,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fehrbelliner Str. 57 (Veteranenstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4afacb44f964a520b91822e3-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5084e715e4b00b2c4197d0b8',
        'name': 'Sucre et Sel',
        'location': {'address': 'Torstr. 132',
         'lat': 52.5296048555097,
         'lng': 13.400169092114245,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5296048555097,
           'lng': 13.400169092114245}],
         'distance': 361,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torstr. 132', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '87956981'}},
       'referralId': 'e-0-5084e715e4b00b2c4197d0b8-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f8a1b556b7463480cad8bd2',
        'name': 'ocelot, not just another bookstore',
        'location': {'address': 'Brunnenstr. 181',
         'lat': 52.53184002256469,
         'lng': 13.399561810389661,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53184002256469,
           'lng': 13.399561810389661}],
         'distance': 416,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brunnenstr. 181',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '59232437'}},
       'referralId': 'e-0-4f8a1b556b7463480cad8bd2-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54270b05498e8525dc82472a',
        'name': 'Quà Phê',
        'location': {'address': 'Max-Beer-Str. 37',
         'crossStreet': 'Schendelgasse',
         'lat': 52.52690541186049,
         'lng': 13.408734478767942,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52690541186049,
           'lng': 13.408734478767942}],
         'distance': 462,
         'postalCode': '10119',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Max-Beer-Str. 37 (Schendelgasse)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54270b05498e8525dc82472a-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5960c9eb1de7653a4778566e',
        'name': 'Tinman Berlin',
        'location': {'address': 'Alte Schönhauser Str. 2',
         'lat': 52.52862456884767,
         'lng': 13.409288060009699,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52862456884767,
           'lng': 13.409288060009699}],
         'distance': 341,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alte Schönhauser Str. 2',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '538199847'}},
       'referralId': 'e-0-5960c9eb1de7653a4778566e-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a5201a4621e3',
        'name': 'Schwarze Pumpe',
        'location': {'address': 'Choriner Str. 76',
         'lat': 52.53241488988341,
         'lng': 13.406199557037423,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53241488988341,
           'lng': 13.406199557037423}],
         'distance': 221,
         'postalCode': '10119',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Choriner Str. 76',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a5201a4621e3-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b12a57ef964a520d08b23e3',
        'name': 'Milchhalle',
        'location': {'address': 'Auguststr. 50',
         'lat': 52.527792,
         'lng': 13.400447,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.527792,
           'lng': 13.400447}],
         'distance': 445,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Auguststr. 50', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b12a57ef964a520d08b23e3-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6e58414d24b60ca360d8d8',
        'name': 'Katz & Maus',
        'location': {'address': 'Weinbergsweg 1a',
         'lat': 52.5301827357598,
         'lng': 13.4017075380609,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5301827357598,
           'lng': 13.4017075380609}],
         'distance': 245,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 1a',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6e58414d24b60ca360d8d8-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda7af964a520e34621e3',
        'name': 'Zur Rose',
        'location': {'address': 'Weinbergsweg 26',
         'crossStreet': 'Rosenthaler Platz',
         'lat': 52.53038709648173,
         'lng': 13.401821596821135,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53038709648173,
           'lng': 13.401821596821135}],
         'distance': 235,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 26 (Rosenthaler Platz)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '46940825'}},
       'referralId': 'e-0-4adcda7af964a520e34621e3-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50597a1ae4b09d2516205aa9',
        'name': 'The Barn - Roastery',
        'location': {'address': 'Schönhauser Allee 8',
         'lat': 52.530038070215326,
         'lng': 13.410568825887637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.530038070215326,
           'lng': 13.410568825887637}],
         'distance': 360,
         'postalCode': '10119',
         'cc': 'DE',
         'neighborhood': 'Rosa Luxemburg Platz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 8',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50597a1ae4b09d2516205aa9-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5413399c498e8fde9fde0365',
        'name': 'Kaschk',
        'location': {'address': 'Linienstr. 40',
         'lat': 52.52841936160541,
         'lng': 13.409956869646255,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52841936160541,
           'lng': 13.409956869646255}],
         'distance': 391,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Linienstr. 40', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '56aa371ce4b08b9a8d57356c',
          'name': 'Beer Bar',
          'pluralName': 'Beer Bars',
          'shortName': 'Beer Bar',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/nightlife/pub_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '98151871'}},
       'referralId': 'e-0-5413399c498e8fde9fde0365-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f7d9f5be4b09d309a10e8c0',
        'name': 'Zeit für Brot',
        'location': {'address': 'Alte Schönhauser Str. 4',
         'lat': 52.52805235717804,
         'lng': 13.408815964587333,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52805235717804,
           'lng': 13.408815964587333}],
         'distance': 361,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alte Schönhauser Str. 4',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f7d9f5be4b09d309a10e8c0-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b9234c2f964a5204aec33e3',
        'name': 'Bei Maria',
        'location': {'address': 'Veteranenstr. 11',
         'lat': 52.53331845737647,
         'lng': 13.401773680411525,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53331845737647,
           'lng': 13.401773680411525}],
         'distance': 394,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Veteranenstr. 11',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b9234c2f964a5204aec33e3-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '585555194287c920bea85277',
        'name': 'Five Elephant',
        'location': {'address': 'Alte Schönhauser Str. 14-15',
         'lat': 52.52674661018768,
         'lng': 13.407724197237187,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52674661018768,
           'lng': 13.407724197237187}],
         'distance': 448,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alte Schönhauser Str. 14-15',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-585555194287c920bea85277-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c0fde34ce57c928f7f580d2',
        'name': 'Green Tea Café MAMECHA',
        'location': {'address': 'Mulackstr. 33',
         'crossStreet': 'Rückerstr.',
         'lat': 52.52728395772743,
         'lng': 13.406304556201015,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52728395772743,
           'lng': 13.406304556201015}],
         'distance': 364,
         'postalCode': '10119',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mulackstr. 33 (Rückerstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c0fde34ce57c928f7f580d2-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '585285a52f91cb5693396da2',
        'name': 'Maudits Français !',
        'location': {'address': 'Fehrbelliner Straße 5',
         'lat': 52.5309704673615,
         'lng': 13.410050469900119,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5309704673615,
           'lng': 13.410050469900119}],
         'distance': 325,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fehrbelliner Straße 5',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-585285a52f91cb5693396da2-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b9ce6c6f964a520648136e3',
        'name': 'Napoljonska',
        'location': {'address': 'Kastanienallee 43',
         'crossStreet': 'Zionskirchstr.',
         'lat': 52.53485363274298,
         'lng': 13.405777215957642,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53485363274298,
           'lng': 13.405777215957642}],
         'distance': 485,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 43 (Zionskirchstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d143941735',
          'name': 'Breakfast Spot',
          'pluralName': 'Breakfast Spots',
          'shortName': 'Breakfast',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/breakfast_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b9ce6c6f964a520648136e3-29'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '561a7329498e522fdd86f64b',
        'name': 'Cantina Sociale',
        'location': {'address': 'Zionskirchstr. 77',
         'lat': 52.53233203705902,
         'lng': 13.409548618878299,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53233203705902,
           'lng': 13.409548618878299}],
         'distance': 352,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Zionskirchstr. 77',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-561a7329498e522fdd86f64b-30'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d864523f9f3a1cdb489dc64',
        'name': "Backshop '05",
        'location': {'address': 'Kastanienallee 47',
         'crossStreet': 'Zionskirchstr.',
         'lat': 52.534351781775634,
         'lng': 13.405476103196959,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.534351781775634,
           'lng': 13.405476103196959}],
         'distance': 428,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 47 (Zionskirchstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d864523f9f3a1cdb489dc64-31'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57c54642cd102e70aa8906d2',
        'name': 'Rose Garden',
        'location': {'address': 'Alte Schönhauser Str. 61',
         'crossStreet': 'Torstr.',
         'lat': 52.528580546706735,
         'lng': 13.409443221850173,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.528580546706735,
           'lng': 13.409443221850173}],
         'distance': 352,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alte Schönhauser Str. 61 (Torstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '375907627'}},
       'referralId': 'e-0-57c54642cd102e70aa8906d2-32'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5deb8ac4f8f55f0008d5a8f3',
        'name': 'Huadou Soy Concept Store',
        'location': {'address': 'Liniestrasse 204',
         'lat': 52.528935,
         'lng': 13.402514,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.528935,
           'lng': 13.402514}],
         'distance': 256,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Liniestrasse 204', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5deb8ac4f8f55f0008d5a8f3-33'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '589b2f6ca8b7594267215f07',
        'name': 'Bread & Coffee',
        'location': {'address': 'Schönhauser Allee 188',
         'crossStreet': 'Torstr.',
         'lat': 52.529006,
         'lng': 13.40938,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.529006,
           'lng': 13.40938}],
         'distance': 322,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 188 (Torstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-589b2f6ca8b7594267215f07-34'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e2d4c3849dccb0008da6d5a',
        'name': 'Smash’d Eatery',
        'location': {'address': 'Fehrbelliner Str 5',
         'lat': 52.531022,
         'lng': 13.410164,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.531022,
           'lng': 13.410164}],
         'distance': 334,
         'cc': 'DE',
         'neighborhood': 'Prenzlauer Berg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fehrbelliner Str 5', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e2d4c3849dccb0008da6d5a-35'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b990c17f964a520da5d35e3',
        'name': 'Bäckerei Backfee',
        'location': {'address': 'Torstr. 125',
         'lat': 52.52973092708433,
         'lng': 13.40117608597045,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52973092708433,
           'lng': 13.40117608597045}],
         'distance': 292,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torstr. 125', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b990c17f964a520da5d35e3-36'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55cf2d86498e90a927109a57',
        'name': '>>KLEIDERCOMPAGNIE N°15',
        'location': {'address': 'Mulackstr. 15',
         'crossStreet': 'Gormannstr.',
         'lat': 52.52763188432334,
         'lng': 13.404414653778076,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52763188432334,
           'lng': 13.404414653778076}],
         'distance': 324,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mulackstr. 15 (Gormannstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '152693818'}},
       'referralId': 'e-0-55cf2d86498e90a927109a57-37'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57162c7b498e2f1993e22ad2',
        'name': 'Kaffee Schwarz',
        'location': {'address': 'Torstraße 130',
         'lat': 52.52937,
         'lng': 13.399774,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52937,
           'lng': 13.399774}],
         'distance': 394,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torstraße 130', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57162c7b498e2f1993e22ad2-38'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ccd5f3f0802d4002c3d1d47',
        'name': 'Mod Coffee',
        'location': {'address': 'Brunnenstraße 193, 10119 Berlin, Germany',
         'lat': 52.530646,
         'lng': 13.400207,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.530646,
           'lng': 13.400207}],
         'distance': 345,
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brunnenstraße 193, 10119 Berlin, Germany',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ccd5f3f0802d4002c3d1d47-39'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c064a4d91d776b08e93f8f9',
        'name': 'Camara',
        'location': {'address': 'Schönhauser Allee 10',
         'lat': 52.530821293805566,
         'lng': 13.411611399424899,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.530821293805566,
           'lng': 13.411611399424899}],
         'distance': 428,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 10',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c064a4d91d776b08e93f8f9-40'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '541dcfb7498e3d028ff76a15',
        'name': 'Krause',
        'location': {'lat': 52.53130881448604,
         'lng': 13.412009208394814,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53130881448604,
           'lng': 13.412009208394814}],
         'distance': 463,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-541dcfb7498e3d028ff76a15-41'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c0a544635ac9c74ea9785f7',
        'name': 'Macke Prinz',
        'location': {'address': 'Zionskirchstr. 39',
         'crossStreet': 'Kastanienallee',
         'lat': 52.534414107341874,
         'lng': 13.404593511691097,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.534414107341874,
           'lng': 13.404593511691097}],
         'distance': 438,
         'postalCode': '10119',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Zionskirchstr. 39 (Kastanienallee)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d11b941735',
          'name': 'Pub',
          'pluralName': 'Pubs',
          'shortName': 'Pub',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/nightlife/pub_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c0a544635ac9c74ea9785f7-42'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b599bc4f964a520b28e28e3',
        'name': 'Metropolitan Coffee',
        'location': {'address': 'Torstr. 41',
         'lat': 52.52852205999264,
         'lng': 13.411168826051094,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52852205999264,
           'lng': 13.411168826051094}],
         'distance': 454,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torstr. 41', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '38306238'}},
       'referralId': 'e-0-4b599bc4f964a520b28e28e3-43'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55bccec9498e9f5df11d9f64',
        'name': 'Eishorn',
        'location': {'address': 'Torstr. 130',
         'lat': 52.52957788452622,
         'lng': 13.399713205575335,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52957788452622,
           'lng': 13.399713205575335}],
         'distance': 392,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torstr. 130', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55bccec9498e9f5df11d9f64-44'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6a92e219640dee8baa'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 36,
   'suggestedBounds': {'ne': {'lat': 52.5258000045, 'lng': 13.416981840771696},
    'sw': {'lat': 52.516799995499994, 'lng': 13.402218159228303}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a6f557389e4906a1487e680',
        'name': 'THE REED',
        'location': {'address': 'Karl-Liebknecht-Str. 13',
         'lat': 52.522172,
         'lng': 13.4084076,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.522172,
           'lng': 13.4084076}],
         'distance': 126,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 13',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a6f557389e4906a1487e680-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af80b9df964a520cb0a22e3',
        'name': 'Buscaglione',
        'location': {'address': 'Rochstr. 3',
         'lat': 52.52399380498759,
         'lng': 13.407616209150518,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52399380498759,
           'lng': 13.407616209150518}],
         'distance': 328,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rochstr. 3', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af80b9df964a520cb0a22e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c94c9b72db4a9002c27ee75',
        'name': 'Coffee Fellows',
        'location': {'address': 'Neue Grünstraße 41',
         'lat': 52.520379,
         'lng': 13.411025,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520379,
           'lng': 13.411025}],
         'distance': 140,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Neue Grünstraße 41',
          '10179 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c94c9b72db4a9002c27ee75-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54bd1e28498eec46cfc17c24',
        'name': 'Father Carpenter',
        'location': {'address': 'Münzstr. 21',
         'crossStreet': '1. Hof',
         'lat': 52.52446934407154,
         'lng': 13.406614065170288,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52446934407154,
           'lng': 13.406614065170288}],
         'distance': 406,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Münzstr. 21 (1. Hof)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54bd1e28498eec46cfc17c24-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ee917afd5fb86321f2b0297',
        'name': 'Tigertörtchen',
        'location': {'address': 'Spandauer Str. 25',
         'lat': 52.51714999915386,
         'lng': 13.407926093359984,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51714999915386,
           'lng': 13.407926093359984}],
         'distance': 475,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Spandauer Str. 25',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '33046216'}},
       'referralId': 'e-0-4ee917afd5fb86321f2b0297-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f96fb2b6d86c297eee02f51',
        'name': 'Bonne Vie Café',
        'location': {'address': 'Propststrasse 1',
         'lat': 52.51728735859492,
         'lng': 13.407735366427183,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51728735859492,
           'lng': 13.407735366427183}],
         'distance': 464,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Propststrasse 1',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f96fb2b6d86c297eee02f51-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d820d0b85d3d7ce1426a62d',
        'name': 'Spreegold',
        'location': {'address': 'Rosa-Luxemburg-Str. 2',
         'lat': 52.523043,
         'lng': 13.409118,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.523043,
           'lng': 13.409118}],
         'distance': 196,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rosa-Luxemburg-Str. 2',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d820d0b85d3d7ce1426a62d-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4aedaec5f964a52022ce21e3',
        'name': 'Café Oliv',
        'location': {'address': 'Münzstr. 8',
         'crossStreet': 'Almstadtstr.',
         'lat': 52.52428700663428,
         'lng': 13.408880435577991,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52428700663428,
           'lng': 13.408880435577991}],
         'distance': 336,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Münzstr. 8 (Almstadtstr.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d143941735',
          'name': 'Breakfast Spot',
          'pluralName': 'Breakfast Spots',
          'shortName': 'Breakfast',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/breakfast_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4aedaec5f964a52022ce21e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51a0a496498e210b5f81f44b',
        'name': 'Café-Haus Koch Berlin',
        'location': {'address': 'Karl-Liebknecht-Str. 7',
         'lat': 52.52082609237831,
         'lng': 13.405733577027748,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52082609237831,
           'lng': 13.405733577027748}],
         'distance': 267,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 7',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51a0a496498e210b5f81f44b-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52a21023498e613a83979959',
        'name': 'TYPE HYPE',
        'location': {'address': 'Rosa-Luxemburg-Str. 9',
         'crossStreet': 'Münzstr.',
         'lat': 52.52455093981894,
         'lng': 13.409918546676636,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52455093981894,
           'lng': 13.409918546676636}],
         'distance': 362,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rosa-Luxemburg-Str. 9 (Münzstr.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52a21023498e613a83979959-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda7af964a520e74621e3',
        'name': 'Kaffeemitte',
        'location': {'address': 'Weinmeisterstr. 9a',
         'lat': 52.52506980005145,
         'lng': 13.405999982119633,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52506980005145,
           'lng': 13.405999982119633}],
         'distance': 485,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinmeisterstr. 9a',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda7af964a520e74621e3-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c73ad9d0e23b1f765ea20dc',
        'name': "Bell 'Chicco",
        'location': {'lat': 52.524802,
         'lng': 13.410173,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.524802,
           'lng': 13.410173}],
         'distance': 391,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c73ad9d0e23b1f765ea20dc-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5749ca13498e49a136bbb607',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Alexanderstr. 13',
         'lat': 52.52113667426643,
         'lng': 13.414633344363445,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52113667426643,
           'lng': 13.414633344363445}],
         'distance': 341,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Alexanderplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alexanderstr. 13',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5749ca13498e49a136bbb607-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b2f857af964a52003ec24e3',
        'name': "Dunkin'",
        'location': {'address': 'Rathausstr. 5, Rathauspassagen',
         'lat': 52.52007420752262,
         'lng': 13.411428953372933,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52007420752262,
           'lng': 13.411428953372933}],
         'distance': 184,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rathausstr. 5, Rathauspassagen',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b2f857af964a52003ec24e3-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dce72f3d164679b8cff0f06',
        'name': 'BoBoQ Mitte',
        'location': {'address': 'Alexanderplatz 9',
         'lat': 52.52202234897672,
         'lng': 13.411423746827825,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52202234897672,
           'lng': 13.411423746827825}],
         'distance': 147,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alexanderplatz 9',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dce72f3d164679b8cff0f06-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ccd113dd4bd9521a8e8d6f1',
        'name': "Dunkin'",
        'location': {'address': 'Bhf. Alexanderplatz, Bahnhof Alexanderplatz',
         'lat': 52.521626477005455,
         'lng': 13.411307367230279,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.521626477005455,
           'lng': 13.411307367230279}],
         'distance': 121,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Alexanderplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bhf. Alexanderplatz, Bahnhof Alexanderplatz',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ccd113dd4bd9521a8e8d6f1-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cab19d544a8224ba5a82a40',
        'name': "Café im Podewil'schen Palais",
        'location': {'address': 'Klosterstr. 68',
         'lat': 52.517496,
         'lng': 13.412633,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517496,
           'lng': 13.412633}],
         'distance': 470,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Klosterstr. 68',
          '10179 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cab19d544a8224ba5a82a40-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0e18d0f964a520f05423e3',
        'name': 'Balzac Coffee',
        'location': {'address': 'Karl-Liebknecht-Str. 5',
         'crossStreet': 'Spandauer Str.',
         'lat': 52.519681063790664,
         'lng': 13.403686798037004,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519681063790664,
           'lng': 13.403686798037004}],
         'distance': 439,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 5 (Spandauer Str.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0e18d0f964a520f05423e3-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4babb6d5f964a52002c33ae3',
        'name': 'Starbucks',
        'location': {'address': 'Panoramastr. 1A',
         'lat': 52.52080771709556,
         'lng': 13.410544131364468,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52080771709556,
           'lng': 13.410544131364468}],
         'distance': 84,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Panoramastr. 1A',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4babb6d5f964a52002c33ae3-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c540eb506901b8d4e08284b',
        'name': 'DINEA Café & Restaurant',
        'location': {'address': 'Alexanderplatz 9',
         'lat': 52.522059168552175,
         'lng': 13.411850145441038,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.522059168552175,
           'lng': 13.411850145441038}],
         'distance': 174,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Alexanderplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alexanderplatz 9',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '553822455'}},
       'referralId': 'e-0-4c540eb506901b8d4e08284b-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c0e57c2c700c9b62aaea3dd',
        'name': 'Eiscafé Lampe',
        'location': {'address': 'Rathausstr. 5',
         'lat': 52.519730644715125,
         'lng': 13.410142853380721,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519730644715125,
           'lng': 13.410142853380721}],
         'distance': 178,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rathausstr. 5', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c0e57c2c700c9b62aaea3dd-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50e07db0e4b053b5f71cd507',
        'name': 'Café P1',
        'location': {'address': 'Panoramastr. 1',
         'lat': 52.52123591975461,
         'lng': 13.410102567500537,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52123591975461,
           'lng': 13.410102567500537}],
         'distance': 34,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Panoramastr. 1',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50e07db0e4b053b5f71cd507-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4babb729f964a5201ec33ae3',
        'name': 'Blixen in den RathausPassagen',
        'location': {'address': 'Rathausstr. 7-10',
         'lat': 52.51914084993105,
         'lng': 13.41045509819763,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51914084993105,
           'lng': 13.41045509819763}],
         'distance': 247,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rathausstr. 7-10',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4babb729f964a5201ec33ae3-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d95eb1adaec224b42aa093e',
        'name': 'Conditorei & Café Röntgen',
        'location': {'address': 'Alexanderplatz 9',
         'lat': 52.52230681746262,
         'lng': 13.411226444498602,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52230681746262,
           'lng': 13.411226444498602}],
         'distance': 157,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alexanderplatz 9',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d95eb1adaec224b42aa093e-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '514453f5e4b071f0e0e0a123',
        'name': 'Coffee Fellows',
        'location': {'address': 'Rosa-Luxemburg-Str. 2',
         'lat': 52.52265601136413,
         'lng': 13.409790005427109,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52265601136413,
           'lng': 13.409790005427109}],
         'distance': 151,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rosa-Luxemburg-Str. 2',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-514453f5e4b071f0e0e0a123-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e56a4313ae47d000890634b',
        'name': 'Wine & Coffee House',
        'location': {'address': 'Karl-Liebknecht-Str. 7',
         'lat': 52.52068870000001,
         'lng': 13.4052341,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52068870000001,
           'lng': 13.4052341}],
         'distance': 303,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 7',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '578088580'}},
       'referralId': 'e-0-5e56a4313ae47d000890634b-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c9c8b2cc824ae002c890a42',
        'name': 'Bäckerei Dreißig',
        'location': {'address': 'Karl-Liebknecht-Str. 23',
         'lat': 52.52344000000001,
         'lng': 13.41061,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52344000000001,
           'lng': 13.41061}],
         'distance': 247,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 23',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '535971934'}},
       'referralId': 'e-0-5c9c8b2cc824ae002c890a42-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5287be9f11d2a84dc9c1f6c5',
        'name': 'Prince',
        'location': {'address': 'Rosa-Luxemburg-Str. 9-11',
         'lat': 52.524362307195496,
         'lng': 13.409995579367576,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.524362307195496,
           'lng': 13.409995579367576}],
         'distance': 341,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rosa-Luxemburg-Str. 9-11',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d142941735',
          'name': 'Asian Restaurant',
          'pluralName': 'Asian Restaurants',
          'shortName': 'Asian',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/asian_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5287be9f11d2a84dc9c1f6c5-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bcaf2f50687ef3be0cedccc',
        'name': 'ALEX',
        'location': {'address': 'Panoramastr. 1a',
         'crossStreet': 'Alexanderplatz',
         'lat': 52.52126185968828,
         'lng': 13.408016249230865,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52126185968828,
           'lng': 13.408016249230865}],
         'distance': 107,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Panoramastr. 1a (Alexanderplatz)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '449783231'}},
       'referralId': 'e-0-4bcaf2f50687ef3be0cedccc-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4da041cb31a6b60cbcd06e18',
        'name': 'Pure Origins',
        'location': {'address': 'Litfaßplatz 2',
         'lat': 52.52167961364953,
         'lng': 13.403422614854552,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52167961364953,
           'lng': 13.403422614854552}],
         'distance': 420,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Litfaßplatz 2', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4da041cb31a6b60cbcd06e18-29'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cfa405134c1a09353033f0e',
        'name': 'Bäcker Wiedemann',
        'location': {'address': 'Karl-Liebknecht-Str. 5',
         'lat': 52.52017018773914,
         'lng': 13.40459257961874,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52017018773914,
           'lng': 13.40459257961874}],
         'distance': 361,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 5',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cfa405134c1a09353033f0e-30'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c516dbf9426c928a0cebb73',
        'name': 'Lavazza',
        'location': {'address': 'Grunerstr. 20',
         'lat': 52.519721,
         'lng': 13.415924,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519721,
           'lng': 13.415924}],
         'distance': 463,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunerstr. 20', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c516dbf9426c928a0cebb73-31'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d4ec4c423a76dcb103863dc',
        'name': 'Food Lounge Berlin',
        'location': {'address': 'Sankt-Wolfgang-Str. 4',
         'lat': 52.520201491769846,
         'lng': 13.402972769396458,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520201491769846,
           'lng': 13.402972769396458}],
         'distance': 465,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sankt-Wolfgang-Str. 4',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d4ec4c423a76dcb103863dc-32'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b6ae653a6ec98002c8bb93f',
        'name': 'Angiyok Ice Bar',
        'location': {'lat': 52.520993,
         'lng': 13.404193,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520993,
           'lng': 13.404193}],
         'distance': 367,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b6ae653a6ec98002c8bb93f-33'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af5d524f964a5207dfd21e3',
        'name': 'ComViet',
        'location': {'address': 'Münzstr. 3',
         'crossStreet': 'Almstadstr.',
         'lat': 52.523982,
         'lng': 13.409149,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.523982,
           'lng': 13.409149}],
         'distance': 300,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Münzstr. 3 (Almstadstr.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d14a941735',
          'name': 'Vietnamese Restaurant',
          'pluralName': 'Vietnamese Restaurants',
          'shortName': 'Vietnamese',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/vietnamese_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af5d524f964a5207dfd21e3-34'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51728ebde4b04c63541ed8c2',
        'name': 'Fraticelli',
        'location': {'address': 'Rathausstr. 1',
         'crossStreet': 'Alexanderplatz',
         'lat': 52.52047223435796,
         'lng': 13.41159983899549,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52047223435796,
           'lng': 13.41159983899549}],
         'distance': 163,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rathausstr. 1 (Alexanderplatz)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d110941735',
          'name': 'Italian Restaurant',
          'pluralName': 'Italian Restaurants',
          'shortName': 'Italian',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/italian_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51728ebde4b04c63541ed8c2-35'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6be2d2433c21b76e6d'},
  'response': {'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 7,
   'suggestedBounds': {'ne': {'lat': 52.5167000045, 'lng': 13.423780312076525},
    'sw': {'lat': 52.5076999955, 'lng': 13.409019687923474}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fba4195e4b0d55659e2ca2c',
        'name': 'Chez Gustave',
        'location': {'address': 'Inselstr. 13',
         'lat': 52.51162337007914,
         'lng': 13.41347032825218,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51162337007914,
           'lng': 13.41347032825218}],
         'distance': 208,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Inselstr. 13', '10179 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '36237898'}},
       'referralId': 'e-0-4fba4195e4b0d55659e2ca2c-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '561bdcb4498efc7fca0a7f01',
        'name': 'Tasty Berlin',
        'location': {'address': 'Rungestr. 14',
         'lat': 52.51221573488683,
         'lng': 13.418368757263577,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51221573488683,
           'lng': 13.418368757263577}],
         'distance': 133,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rungestr. 14', '10179 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-561bdcb4498efc7fca0a7f01-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53d933ee498e134d7497928f',
        'name': 'DA Bäckerei & Café',
        'location': {'address': 'Wallstr. 66',
         'lat': 52.51282,
         'lng': 13.411221,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51282,
           'lng': 13.411221}],
         'distance': 357,
         'postalCode': '10179',
         'cc': 'DE',
         'neighborhood': 'Luisenstadt',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wallstr. 66', '10179 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53d933ee498e134d7497928f-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f7b4265e4b0bd4c7c71910a',
        'name': 'Café Ré',
        'location': {'address': 'Märkisches Ufer 22',
         'crossStreet': 'Inselstr.',
         'lat': 52.513218764083966,
         'lng': 13.410895186525362,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513218764083966,
           'lng': 13.410895186525362}],
         'distance': 389,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Märkisches Ufer 22 (Inselstr.)',
          '10179 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f7b4265e4b0bd4c7c71910a-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc5a3edccbcef3b47b9e6d2',
        'name': 'Coffee I',
        'location': {'address': 'Brückenstr. 5-6a',
         'lat': 52.513210171635876,
         'lng': 13.417482198952083,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513210171635876,
           'lng': 13.417482198952083}],
         'distance': 134,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brückenstr. 5-6a',
          '10179 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc5a3edccbcef3b47b9e6d2-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '561e0857498effa56509098a',
        'name': 'Chicco di Caffè',
        'location': {'address': 'Rungestr. 22-24',
         'lat': 52.51358939708947,
         'lng': 13.419177493425577,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51358939708947,
           'lng': 13.419177493425577}],
         'distance': 243,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rungestr. 22-24',
          '10179 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-561e0857498effa56509098a-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f58c370e4b00c68f83ca454',
        'name': 'Cafe ZER',
        'location': {'lat': 52.51262850864021,
         'lng': 13.410977098462665,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51262850864021,
           'lng': 13.410977098462665}],
         'distance': 370,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f58c370e4b00c68f83ca454-6'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6cc4e5cf3a838e7e8b'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Andreasstraße',
   'headerFullLocation': 'Andreasstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.516800004500006,
     'lng': 13.44678032887092},
    'sw': {'lat': 52.5077999955, 'lng': 13.432019671129078}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ee79f6b0e61a5b51494e28f',
        'name': 'Schokoback',
        'location': {'address': 'Koppenstr. 75',
         'crossStreet': 'Singerstr.',
         'lat': 52.5140495408683,
         'lng': 13.435584018015579,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5140495408683,
           'lng': 13.435584018015579}],
         'distance': 323,
         'postalCode': '10243',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Koppenstr. 75 (Singerstr.)',
          '10243 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ee79f6b0e61a5b51494e28f-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c60e06f90b2c9b675fb3d22',
        'name': 'Café Berlin',
        'location': {'address': 'Am Ostbahnhof',
         'crossStreet': 'Erich-Steinfurth-Str.',
         'lat': 52.51014857523216,
         'lng': 13.433725833892822,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51014857523216,
           'lng': 13.433725833892822}],
         'distance': 452,
         'postalCode': '10243',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Ostbahnhof (Erich-Steinfurth-Str.)',
          '10243 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c60e06f90b2c9b675fb3d22-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b258476f964a520347324e3',
        'name': "McDonald's",
        'location': {'address': 'Am Ostbahnhof 9',
         'lat': 52.509584863916984,
         'lng': 13.434512923434013,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.509584863916984,
           'lng': 13.434512923434013}],
         'distance': 448,
         'postalCode': '10243',
         'cc': 'DE',
         'neighborhood': 'Friedrichshain',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Ostbahnhof 9',
          '10243 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b258476f964a520347324e3-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6c88be05604b77f17e'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Stralauer Allee',
   'headerFullLocation': 'Stralauer Allee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.505200004500004,
     'lng': 13.472078381380577},
    'sw': {'lat': 52.4961999955, 'lng': 13.457321618619424}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52c19656498ea7ea807346e6',
        'name': 'Milja & Schäfa',
        'location': {'address': 'Sonntagstr. 1',
         'lat': 52.50435936450862,
         'lng': 13.468234950298136,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50435936450862,
           'lng': 13.468234950298136}],
         'distance': 472,
         'postalCode': '10245',
         'cc': 'DE',
         'neighborhood': 'Boxhagener Kiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sonntagstr. 1', '10245 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52c19656498ea7ea807346e6-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51bb4374498ec8beacee8d50',
        'name': 'Zuckerzauber',
        'location': {'address': 'Markgrafendamm 24c',
         'lat': 52.50226071111315,
         'lng': 13.466436910143155,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50226071111315,
           'lng': 13.466436910143155}],
         'distance': 209,
         'postalCode': '10245',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Markgrafendamm 24c',
          '10245 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51bb4374498ec8beacee8d50-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f7ae0a0e4b0747c65b578d4',
        'name': 'LasCafe',
        'location': {'address': 'Laskerstr. 6-8',
         'lat': 52.50101897538426,
         'lng': 13.465526103973389,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50101897538426,
           'lng': 13.465526103973389}],
         'distance': 66,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Laskerstr. 6-8', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f7ae0a0e4b0747c65b578d4-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6cb8c07577f77ad807'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Samariterkiez',
   'headerFullLocation': 'Samariterkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 15,
   'suggestedBounds': {'ne': {'lat': 52.520600004500004,
     'lng': 13.472980967131265},
    'sw': {'lat': 52.5115999955, 'lng': 13.458219032868735}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55a28347498e85b323f7f130',
        'name': 'Verzuckert Berlin',
        'location': {'address': 'Schreinerstr. 61',
         'lat': 52.517848628388876,
         'lng': 13.462878300139064,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517848628388876,
           'lng': 13.462878300139064}],
         'distance': 268,
         'postalCode': '10247',
         'cc': 'DE',
         'neighborhood': 'Samariterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schreinerstr. 61',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55a28347498e85b323f7f130-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5734663a498e1e63082f3e4b',
        'name': 'Die Kaffee Freunde (Die Kaffeefreunde)',
        'location': {'address': 'Bänschstr. 73',
         'lat': 52.51770415249472,
         'lng': 13.468495898671334,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51770415249472,
           'lng': 13.468495898671334}],
         'distance': 265,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bänschstr. 73', '10247 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5734663a498e1e63082f3e4b-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50113ab3e4b0260c40a950da',
        'name': 'Cafe Della Peppina',
        'location': {'address': 'Samariterstr. 14',
         'lat': 52.51766917578809,
         'lng': 13.465702872435877,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51766917578809,
           'lng': 13.465702872435877}],
         'distance': 174,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Samariterstr. 14',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50113ab3e4b0260c40a950da-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '556ae8d3498e7b363bee6b7a',
        'name': 'Bye Bye Cavaliere',
        'location': {'address': 'Proskauer Str. 28',
         'lat': 52.51750752743603,
         'lng': 13.461312563313543,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51750752743603,
           'lng': 13.461312563313543}],
         'distance': 330,
         'postalCode': '10248',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Proskauer Str. 28',
          '10248 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-556ae8d3498e7b363bee6b7a-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cd6af897da9a35d8ac6f0b9',
        'name': 'Coffein Centrale',
        'location': {'address': 'Mainzer Str. 20',
         'lat': 52.51337276255017,
         'lng': 13.462436464317955,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51337276255017,
           'lng': 13.462436464317955}],
         'distance': 371,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mainzer Str. 20',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cd6af897da9a35d8ac6f0b9-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4afaaa6df964a520461822e3',
        'name': 'Kaffee Karamell',
        'location': {'address': 'Voigtstr. 35',
         'lat': 52.51650469814483,
         'lng': 13.468428792821966,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51650469814483,
           'lng': 13.468428792821966}],
         'distance': 196,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Voigtstr. 35', '10247 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4afaaa6df964a520461822e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a717c6fc9f90746aac5ffad',
        'name': 'BANKERT',
        'location': {'address': 'Proskauer Straße 5',
         'lat': 52.516003,
         'lng': 13.460891,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516003,
           'lng': 13.460891}],
         'distance': 319,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Proskauer Straße 5',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a717c6fc9f90746aac5ffad-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '526251d1498e25eda96e0306',
        'name': 'Cafe Herman Schulz',
        'location': {'address': 'Finowstr.',
         'crossStreet': 'Scharnweberstr.',
         'lat': 52.5125792091848,
         'lng': 13.468753546769653,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5125792091848,
           'lng': 13.468753546769653}],
         'distance': 446,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Finowstr. (Scharnweberstr.)',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-526251d1498e25eda96e0306-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57039823cd101d4ac84dcfb7',
        'name': 'KleinMein',
        'location': {'address': 'Waldeyerstr. 9',
         'lat': 52.514847,
         'lng': 13.471392,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.514847,
           'lng': 13.471392}],
         'distance': 416,
         'postalCode': '10247',
         'cc': 'DE',
         'neighborhood': 'Samariterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Waldeyerstr. 9',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57039823cd101d4ac84dcfb7-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b091fdff964a520501423e3',
        'name': 'Anastasia',
        'location': {'address': 'Samariterstr. 13',
         'crossStreet': 'Schreinerstr.',
         'lat': 52.51731383301783,
         'lng': 13.4656734454401,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51731383301783,
           'lng': 13.4656734454401}],
         'distance': 135,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Samariterstr. 13 (Schreinerstr.)',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b091fdff964a520501423e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4efaec8af9ab2e66850ee98b',
        'name': 'Milch & Brötchen',
        'location': {'address': 'Rigaer Str. 29',
         'lat': 52.51657995149962,
         'lng': 13.46326231956482,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51657995149962,
           'lng': 13.46326231956482}],
         'distance': 167,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rigaer Str. 29',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4efaec8af9ab2e66850ee98b-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59634711112c6c709381ef30',
        'name': 'Volle Kanne',
        'location': {'address': 'Proskauer Str 10',
         'crossStreet': 'Rigaerstr',
         'lat': 52.517158,
         'lng': 13.461775,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517158,
           'lng': 13.461775}],
         'distance': 284,
         'postalCode': '10247',
         'cc': 'DE',
         'neighborhood': 'Samariterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Proskauer Str 10 (Rigaerstr)',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59634711112c6c709381ef30-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b80e552f964a520ee9030e3',
        'name': 'Nicolai Konditorei & Café',
        'location': {'address': 'Niederbarnimstr. 2',
         'lat': 52.51462807361908,
         'lng': 13.459718692256196,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51462807361908,
           'lng': 13.459718692256196}],
         'distance': 430,
         'postalCode': '10245',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Niederbarnimstr. 2',
          '10245 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b80e552f964a520ee9030e3-12'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6d32abda5e08faf983'},
  'response': {'headerLocation': 'Friedenstraße',
   'headerFullLocation': 'Friedenstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.528300004500004,
     'lng': 13.4501822608864},
    'sw': {'lat': 52.5192999955, 'lng': 13.4354177391136}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e99958b82310013a121b614',
        'name': 'Frau Honig',
        'location': {'address': 'Straßmannstr. 1',
         'lat': 52.521433,
         'lng': 13.446983,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.521433,
           'lng': 13.446983}],
         'distance': 386,
         'postalCode': '10249',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Straßmannstr. 1',
          '10249 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e99958b82310013a121b614-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6e8925f964a5200fc12ce3',
        'name': 'Café Bäckerei Olive',
        'location': {'address': 'Straßmannstr. 5',
         'lat': 52.52178965550562,
         'lng': 13.447676002979277,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52178965550562,
           'lng': 13.447676002979277}],
         'distance': 398,
         'postalCode': '10249',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Straßmannstr. 5',
          '10249 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6e8925f964a5200fc12ce3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56795b44498ee8f80014876e',
        'name': 'Back-Café Harmonie',
        'location': {'lat': 52.522972,
         'lng': 13.4406,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.522972,
           'lng': 13.4406}],
         'distance': 175,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56795b44498ee8f80014876e-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b8fca3af964a5206a6233e3',
        'name': 'Paul und Paula',
        'location': {'address': 'Richard-Sorge-Str. 25',
         'lat': 52.520473458038225,
         'lng': 13.447329647158703,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520473458038225,
           'lng': 13.447329647158703}],
         'distance': 480,
         'postalCode': '10249',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richard-Sorge-Str. 25',
          '10249 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b8fca3af964a5206a6233e3-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6dd91d7d1d4942f847'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Friedrichsfelde',
   'headerFullLocation': 'Alt-Friedrichsfelde, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5177000045, 'lng': 13.522180480024934},
    'sw': {'lat': 52.508699995499995, 'lng': 13.507419519975064}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bf05c4cc62b49002c469246',
        'name': 'Café TURO',
        'location': {'address': 'Alt-Friedrichsfelde 87',
         'lat': 52.51013756,
         'lng': 13.51796708,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51013756,
           'lng': 13.51796708}],
         'distance': 402,
         'postalCode': '10315',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alt-Friedrichsfelde 87',
          '10315 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1c4941735',
          'name': 'Restaurant',
          'pluralName': 'Restaurants',
          'shortName': 'Restaurant',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/default_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '559387261'}},
       'referralId': 'e-0-5bf05c4cc62b49002c469246-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6e92e219640dee980c'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Rummelsburg',
   'headerFullLocation': 'Rummelsburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.502400004500004,
     'lng': 13.498177911495977},
    'sw': {'lat': 52.4933999955, 'lng': 13.483422088504023}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50c46e94e4b0f9a0d87bcb8e',
        'name': 'Bäckerei Leopold',
        'location': {'address': 'Leopoldstr. 22',
         'crossStreet': 'Emanuelstr.',
         'lat': 52.502054977437155,
         'lng': 13.490931544492323,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.502054977437155,
           'lng': 13.490931544492323}],
         'distance': 462,
         'postalCode': '10317',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leopoldstr. 22 (Emanuelstr.)',
          '10317 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50c46e94e4b0f9a0d87bcb8e-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '548ff2de498ea9eebfcd20a3',
        'name': 'Carpe Diem Café & Bäckerei',
        'location': {'address': 'Leopoldstr. 22',
         'lat': 52.50225236098114,
         'lng': 13.490609020828984,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50225236098114,
           'lng': 13.490609020828984}],
         'distance': 484,
         'postalCode': '10317',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leopoldstr. 22',
          '10317 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-548ff2de498ea9eebfcd20a3-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6e32abda5e08fafddc'},
  'response': {'headerLocation': 'Karlshorst',
   'headerFullLocation': 'Karlshorst, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.4880000045, 'lng': 13.536075496169827},
    'sw': {'lat': 52.4789999955, 'lng': 13.521324503830174}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bf7de8d5317a593e0acfe7e',
        'name': 'Cafe TreBo',
        'location': {'address': 'Treskowallee 75',
         'lat': 52.485808,
         'lng': 13.526785,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.485808,
           'lng': 13.526785}],
         'distance': 287,
         'postalCode': '10318',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Treskowallee 75',
          '10318 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bf7de8d5317a593e0acfe7e-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '570e51d6498e9ea5afa12583',
        'name': 'Prinzeneis',
        'location': {'lat': 52.48096013696334,
         'lng': 13.523426329610075,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48096013696334,
           'lng': 13.523426329610075}],
         'distance': 455,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-570e51d6498e9ea5afa12583-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d3161232e56236a201d12b4',
        'name': 'Feinbäckerei Hollschewski',
        'location': {'address': 'Treskowallee',
         'crossStreet': 'Rheinsteinstr.',
         'lat': 52.48280635750813,
         'lng': 13.526058197021483,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48280635750813,
           'lng': 13.526058197021483}],
         'distance': 195,
         'postalCode': '10318',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Treskowallee (Rheinsteinstr.)',
          '10318 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d3161232e56236a201d12b4-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a64a51d67e5f251ed167531',
        'name': 'Kawi Café & Lunch',
        'location': {'address': 'Wandlitzstr. 1-3',
         'lat': 52.480404,
         'lng': 13.524434,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.480404,
           'lng': 13.524434}],
         'distance': 449,
         'postalCode': '10318',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wandlitzstr. 1-3',
          '10318 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a64a51d67e5f251ed167531-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cd285ce90f23704f43e8be8',
        'name': 'Bäckerei & Café',
        'location': {'address': 'Dönhoffstr. 7',
         'crossStreet': 'Hentigstraße',
         'lat': 52.48348820350306,
         'lng': 13.522525326195023,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48348820350306,
           'lng': 13.522525326195023}],
         'distance': 418,
         'postalCode': '10318',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dönhoffstr. 7 (Hentigstraße)',
          '10318 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cd285ce90f23704f43e8be8-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6e4467db32a3b13316'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Friedrichsfelde',
   'headerFullLocation': 'Alt-Friedrichsfelde, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.503700004500004,
     'lng': 13.52617812964705},
    'sw': {'lat': 52.4946999955, 'lng': 13.511421870352951}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '517502dbe4b019428fc44235',
        'name': 'Café Crusty',
        'location': {'address': 'Am Tierpark 74',
         'lat': 52.496943808481035,
         'lng': 13.522982423513913,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496943808481035,
           'lng': 13.522982423513913}],
         'distance': 378,
         'postalCode': '10315',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Tierpark 74',
          '10315 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-517502dbe4b019428fc44235-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6fe5bf882cda87c65f'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Herzbergstraße',
   'headerFullLocation': 'Herzbergstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.525100004500004,
     'lng': 13.504281723150665},
    'sw': {'lat': 52.5160999955, 'lng': 13.489518276849335}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e6f368fe8722514a04a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Fennpfuhl',
   'headerFullLocation': 'Fennpfuhl, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5291000045, 'lng': 13.489482395336175},
    'sw': {'lat': 52.5200999955, 'lng': 13.474717604663827}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50502e72e4b087fd016726ad',
        'name': 'Linde Bäckerei - Konditorei',
        'location': {'address': 'Möllendorffstr. 52',
         'lat': 52.5244198459537,
         'lng': 13.479725086562068,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5244198459537,
           'lng': 13.479725086562068}],
         'distance': 162,
         'postalCode': '10367',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Möllendorffstr. 52',
          '10367 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50502e72e4b087fd016726ad-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e70e6b2a1698428c3ee'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Fennpfuhl',
   'headerFullLocation': 'Fennpfuhl, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5340000045, 'lng': 13.476883218979323},
    'sw': {'lat': 52.524999995499996, 'lng': 13.462116781020677}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ecfabd277c8ea62fb297b15',
        'name': 'Plötners Café',
        'location': {'address': 'Anton-Saefkow-Platz 11',
         'lat': 52.52918481002098,
         'lng': 13.47068268269635,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52918481002098,
           'lng': 13.47068268269635}],
         'distance': 87,
         'postalCode': '10369',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Anton-Saefkow-Platz 11',
          '10369 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ecfabd277c8ea62fb297b15-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c90a5ba7f3d76b0b7afd5d2',
        'name': 'Restaurant Marco Polo Due',
        'location': {'address': 'Anton Saefkow Platz 13',
         'lat': 52.52996721099281,
         'lng': 13.471591541323646,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52996721099281,
           'lng': 13.471591541323646}],
         'distance': 150,
         'postalCode': '10369',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Anton Saefkow Platz 13',
          '10369 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c90a5ba7f3d76b0b7afd5d2-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e70d91d7d1d49430357'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Kollwitzkiez',
   'headerFullLocation': 'Kollwitzkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 31,
   'suggestedBounds': {'ne': {'lat': 52.539700004500006,
     'lng': 13.433084177394056},
    'sw': {'lat': 52.5306999955, 'lng': 13.418315822605946}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d40494a287ebc0008a68e45',
        'name': 'Cafelix',
        'location': {'address': 'Winsstraße 47',
         'lat': 52.535471,
         'lng': 13.426628,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.535471,
           'lng': 13.426628}],
         'distance': 69,
         'cc': 'DE',
         'neighborhood': 'Kollwitzkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winsstraße 47', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d40494a287ebc0008a68e45-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4afafa28f964a520071a22e3',
        'name': 'No Fire No Glory',
        'location': {'address': 'Rykestraße 45',
         'lat': 52.53666,
         'lng': 13.420291,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53666,
           'lng': 13.420291}],
         'distance': 400,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rykestraße 45', '10405 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '34475687'}},
       'referralId': 'e-0-4afafa28f964a520071a22e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '563377e8498e265460203888',
        'name': "Allan's Breakfast Club & Wine Bar",
        'location': {'address': 'Rykestr. 13',
         'crossStreet': 'Wörtherstr.',
         'lat': 52.53650891039924,
         'lng': 13.420523200128146,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53650891039924,
           'lng': 13.420523200128146}],
         'distance': 379,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rykestr. 13 (Wörtherstr.)',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-563377e8498e265460203888-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d592d93676ceb00074f2cb4',
        'name': 'Plant Base',
        'location': {'address': 'Prenzlauer Allee 208',
         'lat': 52.536843,
         'lng': 13.42244,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.536843,
           'lng': 13.42244}],
         'distance': 286,
         'postalCode': '10405',
         'cc': 'DE',
         'neighborhood': 'Kollwitzkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prenzlauer Allee 208',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d592d93676ceb00074f2cb4-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56f39a12498e8886f31f57d2',
        'name': 'Café Neue Liebe',
        'location': {'address': 'Rykestr. 42',
         'lat': 52.53707821644291,
         'lng': 13.42097486201507,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53707821644291,
           'lng': 13.42097486201507}],
         'distance': 382,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rykestr. 42', '10405 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '214437962'}},
       'referralId': 'e-0-56f39a12498e8886f31f57d2-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c1cbb7863750f479ff7b667',
        'name': 'Aromas Café',
        'location': {'address': 'Marienburger Str. 26a',
         'lat': 52.533268619510075,
         'lng': 13.428851459516046,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.533268619510075,
           'lng': 13.428851459516046}],
         'distance': 302,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marienburger Str. 26a',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c1cbb7863750f479ff7b667-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b44d268f964a5203afd25e3',
        'name': 'Cafe Seeblick',
        'location': {'address': 'Rykestr. 14',
         'lat': 52.53669094347613,
         'lng': 13.420664889267158,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53669094347613,
           'lng': 13.420664889267158}],
         'distance': 379,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rykestr. 14', '10405 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b44d268f964a5203afd25e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adf5adff964a520cc7921e3',
        'name': 'Kaffeehaus SowohlAlsAuch',
        'location': {'address': 'Kollwitzstr. 88',
         'crossStreet': 'Sredzkistr.',
         'lat': 52.5383319182967,
         'lng': 13.420599102973938,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5383319182967,
           'lng': 13.420599102973938}],
         'distance': 490,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kollwitzstr. 88 (Sredzkistr.)',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adf5adff964a520cc7921e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda86f964a520224921e3',
        'name': 'Pasternak',
        'location': {'address': 'Knaackstr. 22-24',
         'lat': 52.53465906029785,
         'lng': 13.418682027809362,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53465906029785,
           'lng': 13.418682027809362}],
         'distance': 479,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Knaackstr. 22-24',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda86f964a520224921e3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c1dc3cb63750f471ad7b867',
        'name': 'Einstern Coffee Bar',
        'location': {'address': 'Prenzlauer Allee 195',
         'lat': 52.53962429766169,
         'lng': 13.424449930469796,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53962429766169,
           'lng': 13.424449930469796}],
         'distance': 499,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prenzlauer Allee 195',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c1dc3cb63750f471ad7b867-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af91f00f964a520091122e3',
        'name': 'Godshot',
        'location': {'address': 'Immanuelkirchstr. 32',
         'lat': 52.53306706135371,
         'lng': 13.422710312168903,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53306706135371,
           'lng': 13.422710312168903}],
         'distance': 312,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Immanuelkirchstr. 32',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '55842506'}},
       'referralId': 'e-0-4af91f00f964a520091122e3-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52d6c316498e69c927b71572',
        'name': 'Lieschen Müller',
        'location': {'address': 'Christburger Str. 13',
         'lat': 52.535429692645245,
         'lng': 13.428133507110116,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.535429692645245,
           'lng': 13.428133507110116}],
         'distance': 166,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Christburger Str. 13',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '86953158'}},
       'referralId': 'e-0-52d6c316498e69c927b71572-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e47c672d164155c0df6ce20',
        'name': 'Esperimento',
        'location': {'address': 'Sredzkistr. 63',
         'lat': 52.53747787558684,
         'lng': 13.422182491995837,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53747787558684,
           'lng': 13.422182491995837}],
         'distance': 347,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sredzkistr. 63',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e47c672d164155c0df6ce20-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bbb169e7421a593f064c440',
        'name': 'enten und katzen',
        'location': {'address': 'Winsstr. 58',
         'crossStreet': 'Marienburger Str.',
         'lat': 52.53376137484044,
         'lng': 13.42528484999152,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53376137484044,
           'lng': 13.42528484999152}],
         'distance': 162,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winsstr. 58 (Marienburger Str.)',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bbb169e7421a593f064c440-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f4f7118e4b09d63cc67d45c',
        'name': 'Espresso & Co',
        'location': {'lat': 52.53225660831213,
         'lng': 13.428343496395666,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53225660831213,
           'lng': 13.428343496395666}],
         'distance': 373,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f4f7118e4b09d63cc67d45c-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '562cc8db498e33b9f89499d1',
        'name': "Jacky's",
        'location': {'address': 'Hufelandstr. 2',
         'lat': 52.532958311761554,
         'lng': 13.429595938377833,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.532958311761554,
           'lng': 13.429595938377833}],
         'distance': 363,
         'postalCode': '10407',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hufelandstr. 2',
          '10407 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-562cc8db498e33b9f89499d1-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51b44b56498eb978655734d3',
        'name': 'Simply',
        'location': {'address': 'Pasteurstr. 2',
         'lat': 52.53431860212863,
         'lng': 13.431587611460703,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53431860212863,
           'lng': 13.431587611460703}],
         'distance': 410,
         'postalCode': '10407',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pasteurstr. 2', '10407 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '62385949'}},
       'referralId': 'e-0-51b44b56498eb978655734d3-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b8a92f1f964a520fb7232e3',
        'name': 'Bäckerei & Konditorei Nicolai',
        'location': {'address': 'Prenzlauer Allee 42',
         'lat': 52.53597060960594,
         'lng': 13.422362490965062,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53597060960594,
           'lng': 13.422362490965062}],
         'distance': 241,
         'postalCode': '10347',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prenzlauer Allee 42',
          '10347 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b8a92f1f964a520fb7232e3-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a520904521e3',
        'name': 'Übereck',
        'location': {'address': 'Prenzlauer Allee  47',
         'lat': 52.537038545332365,
         'lng': 13.423426764347584,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.537038545332365,
           'lng': 13.423426764347584}],
         'distance': 256,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prenzlauer Allee  47',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a520904521e3-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bb25e97a32876b00d8200fe',
        'name': 'Winsenz',
        'location': {'address': 'Winsstraße 58',
         'lat': 52.533726,
         'lng': 13.425102,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.533726,
           'lng': 13.425102}],
         'distance': 169,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winsstraße 58', '10405 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bb25e97a32876b00d8200fe-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5756cb93498e7fd15df87e5a',
        'name': 'Raum Schwalbe',
        'location': {'address': 'Winnstr. 9',
         'lat': 52.53220413516101,
         'lng': 13.423798836475061,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53220413516101,
           'lng': 13.423798836475061}],
         'distance': 357,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winnstr. 9', '10405 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '386457835'}},
       'referralId': 'e-0-5756cb93498e7fd15df87e5a-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5108dda5e4b0f42b0670d5ae',
        'name': 'Blaumond',
        'location': {'address': 'Immanuelkirchstr. 3',
         'lat': 52.53303669013907,
         'lng': 13.42267598164818,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53303669013907,
           'lng': 13.42267598164818}],
         'distance': 316,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Immanuelkirchstr. 3', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5108dda5e4b0f42b0670d5ae-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f1d4e42e4b0d9f8bb35272f',
        'name': 'Waffelhaus',
        'location': {'address': 'Prenzlauer Allee 230',
         'lat': 52.532524345929694,
         'lng': 13.420241879689058,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.532524345929694,
           'lng': 13.420241879689058}],
         'distance': 474,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prenzlauer Allee 230',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f1d4e42e4b0d9f8bb35272f-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dcfbb811f6eb122709acd23',
        'name': "Ralf's Torten-Atelier",
        'location': {'address': 'Immanuelkirchstr. 33',
         'lat': 52.533024,
         'lng': 13.422613,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.533024,
           'lng': 13.422613}],
         'distance': 319,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Immanuelkirchstr. 33',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dcfbb811f6eb122709acd23-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bb7686b2ea19521f1dfac2f',
        'name': 'Melis Coffee',
        'location': {'lat': 52.5378020376754,
         'lng': 13.423495179803536,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5378020376754,
           'lng': 13.423495179803536}],
         'distance': 325,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bb7686b2ea19521f1dfac2f-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '522245af11d29e4ef4df2291',
        'name': 'Muse',
        'location': {'address': 'Immanuelkirchstr. 31',
         'lat': 52.532938701483936,
         'lng': 13.423114057701246,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.532938701483936,
           'lng': 13.423114057701246}],
         'distance': 306,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Immanuelkirchstr. 31',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d14e941735',
          'name': 'American Restaurant',
          'pluralName': 'American Restaurants',
          'shortName': 'American',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/default_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '113377497'}},
       'referralId': 'e-0-522245af11d29e4ef4df2291-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eb7a089b8f786e2761fd25f',
        'name': 'Glücks Marone',
        'location': {'address': 'Knaackstrasse 8',
         'lat': 52.53392178856729,
         'lng': 13.420138535753459,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53392178856729,
           'lng': 13.420138535753459}],
         'distance': 402,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Knaackstrasse 8', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eb7a089b8f786e2761fd25f-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5623a45b498eccd9fb8dc015',
        'name': 'Diderot',
        'location': {'address': 'Raabestr 1',
         'crossStreet': 'Prenzlauer Allee',
         'lat': 52.532369,
         'lng': 13.420595,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.532369,
           'lng': 13.420595}],
         'distance': 467,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raabestr 1 (Prenzlauer Allee)',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5623a45b498eccd9fb8dc015-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c11041ac9a517002c56e392',
        'name': 'Café Gut Gezogen',
        'location': {'address': 'Kollwitzstraße 74',
         'lat': 52.537125,
         'lng': 13.419041,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.537125,
           'lng': 13.419041}],
         'distance': 499,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kollwitzstraße 74',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c11041ac9a517002c56e392-28'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e71e2d2433c21b78464'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Storkower Straße',
   'headerFullLocation': 'Storkower Straße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5381000045, 'lng': 13.456583908332862},
    'sw': {'lat': 52.5290999955, 'lng': 13.441816091667137}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '581600ccd67cf3f1c1dee0ad',
        'name': 'Neuer Hain',
        'location': {'address': 'Volkspark Friedrichshain',
         'lat': 52.53085220454525,
         'lng': 13.443776657414501,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53085220454525,
           'lng': 13.443776657414501}],
         'distance': 477,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Volkspark Friedrichshain',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-581600ccd67cf3f1c1dee0ad-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7135436f34a078fca8'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Prenzlauer Berg',
   'headerFullLocation': 'Prenzlauer Berg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5488000045, 'lng': 13.448785708162127},
    'sw': {'lat': 52.5397999955, 'lng': 13.434014291837872}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '534d1382498ef814e3c131e2',
        'name': 'Café Gold Stück',
        'location': {'address': 'Erich-Weinert-Str. 128',
         'lat': 52.54472,
         'lng': 13.437095,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54472,
           'lng': 13.437095}],
         'distance': 295,
         'postalCode': '10409',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Erich-Weinert-Str. 128',
          '10409 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-534d1382498ef814e3c131e2-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d04907828926ea850776cc2',
        'name': 'Lila Bäcker',
        'location': {'address': 'Greifswalder Str. 154 - 156',
         'lat': 52.54358842245588,
         'lng': 13.44127303601843,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54358842245588,
           'lng': 13.44127303601843}],
         'distance': 79,
         'postalCode': '10409',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Greifswalder Str. 154 - 156',
          '10409 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d04907828926ea850776cc2-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7133f6626c6896e507'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schönhauser Allee-Süd',
   'headerFullLocation': 'Schönhauser Allee-Süd, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 35,
   'suggestedBounds': {'ne': {'lat': 52.5423000045, 'lng': 13.418584614672602},
    'sw': {'lat': 52.533299995499995, 'lng': 13.4038153853274}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4faea556e4b0ec82893bbb05',
        'name': 'Nothaft',
        'location': {'address': 'Schönhauser Allee 43a',
         'crossStreet': 'Danziger Str.',
         'lat': 52.540269136969584,
         'lng': 13.412257663002183,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.540269136969584,
           'lng': 13.412257663002183}],
         'distance': 284,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 43a (Danziger Str.)',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '103365601'}},
       'referralId': 'e-0-4faea556e4b0ec82893bbb05-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0e7a04f964a520d65723e3',
        'name': 'Café Morgenrot',
        'location': {'address': 'Kastanienallee 85',
         'lat': 52.53759283287074,
         'lng': 13.408662352041224,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53759283287074,
           'lng': 13.408662352041224}],
         'distance': 173,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 85',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0e7a04f964a520d65723e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520c24621e3',
        'name': 'Kauf Dich Glücklich',
        'location': {'address': 'Oderberger Str. 44',
         'lat': 52.53942444662857,
         'lng': 13.407460064934028,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53942444662857,
           'lng': 13.407460064934028}],
         'distance': 311,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Str. 44',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520c24621e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cdffd61f8cdb1f7bcad9412',
        'name': 'Café KRONE',
        'location': {'address': 'Oderberger Str. 38',
         'lat': 52.539851664730676,
         'lng': 13.40614232632102,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.539851664730676,
           'lng': 13.40614232632102}],
         'distance': 411,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Str. 38',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cdffd61f8cdb1f7bcad9412-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '593917d34928140396e2e3a0',
        'name': 'Rosa Wolf',
        'location': {'address': 'Eberswalder Str. 32',
         'lat': 52.541104,
         'lng': 13.409779,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541104,
           'lng': 13.409779}],
         'distance': 380,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eberswalder Str. 32',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-593917d34928140396e2e3a0-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d0b1eb8b93b224b8d294abf',
        'name': 'DÄRI Milchwerkstatt',
        'location': {'address': 'Oderberger Str. 6',
         'lat': 52.53842740259038,
         'lng': 13.410050728237302,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53842740259038,
           'lng': 13.410050728237302}],
         'distance': 104,
         'postalCode': '10435',
         'cc': 'DE',
         'neighborhood': 'Prenzlauer Berg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Str. 6',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d0b1eb8b93b224b8d294abf-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d6a0aec1a88b1f7515e335d',
        'name': 'Engelberg',
        'location': {'address': 'Oderberger Str. 21',
         'lat': 52.53958361968808,
         'lng': 13.407141357800057,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53958361968808,
           'lng': 13.407141357800057}],
         'distance': 339,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Str. 21',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d6a0aec1a88b1f7515e335d-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd17cc3046076b0b4dc7171',
        'name': 'Hüftengold',
        'location': {'address': 'Oderberger Straße 27',
         'lat': 52.54012017414925,
         'lng': 13.40594061919277,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54012017414925,
           'lng': 13.40594061919277}],
         'distance': 439,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Straße 27',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd17cc3046076b0b4dc7171-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af28ef8f964a520eae721e3',
        'name': 'Bonanza Coffee',
        'location': {'address': 'Oderberger Str. 35',
         'lat': 52.539992653508016,
         'lng': 13.405530452728271,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.539992653508016,
           'lng': 13.405530452728271}],
         'distance': 454,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Str. 35',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af28ef8f964a520eae721e3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55771844498eb08a2079f2a7',
        'name': 'Lorch & Söhne',
        'location': {'address': 'Danziger Str. 25',
         'lat': 52.54037670566916,
         'lng': 13.417087259925681,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54037670566916,
           'lng': 13.417087259925681}],
         'distance': 491,
         'postalCode': '10435',
         'cc': 'DE',
         'neighborhood': 'Helmholtzkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Danziger Str. 25',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55771844498eb08a2079f2a7-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd2ffb89854d13a05a0fc4d',
        'name': 'An einem Sonntag im August',
        'location': {'address': 'Kastanienallee 94-103',
         'lat': 52.540128,
         'lng': 13.411574,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.540128,
           'lng': 13.411574}],
         'distance': 260,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 94-103',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd2ffb89854d13a05a0fc4d-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0fd008f964a520266523e3',
        'name': 'Werkstatt der Süße',
        'location': {'address': 'Husemannstr. 25',
         'lat': 52.53908151887969,
         'lng': 13.417857877038573,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53908151887969,
           'lng': 13.417857877038573}],
         'distance': 472,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Husemannstr. 25',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0fd008f964a520266523e3-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cd90b23145fa1cd5b7409bd',
        'name': 'Morning Glory',
        'location': {'address': 'Kastanienallee 75',
         'lat': 52.536304951961455,
         'lng': 13.407307202431772,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.536304951961455,
           'lng': 13.407307202431772}],
         'distance': 311,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 75',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cd90b23145fa1cd5b7409bd-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54548df1498e1fd1b28db69f',
        'name': 'Linnen Café',
        'location': {'address': 'Eberswalder Str. 35',
         'lat': 52.54142820895986,
         'lng': 13.408899307250977,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54142820895986,
           'lng': 13.408899307250977}],
         'distance': 432,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eberswalder Str. 35',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54548df1498e1fd1b28db69f-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adf5a4af964a520c47921e3',
        'name': 'November',
        'location': {'address': 'Husemannstr. 15',
         'lat': 52.53833168816423,
         'lng': 13.417484834768603,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53833168816423,
           'lng': 13.417484834768603}],
         'distance': 429,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Husemannstr. 15',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adf5a4af964a520c47921e3-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54fc6976498e7270521192cf',
        'name': 'Café Fräulein Dietrich',
        'location': {'address': 'Fürstenberger Straße 14',
         'lat': 52.53717681138397,
         'lng': 13.403985601851556,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53717681138397,
           'lng': 13.403985601851556}],
         'distance': 493,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fürstenberger Straße 14',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54fc6976498e7270521192cf-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4baf47def964a52050f53be3',
        'name': 'Kollberg35',
        'location': {'address': 'Wörther Str. 35',
         'lat': 52.53656685018438,
         'lng': 13.41770199418893,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53656685018438,
           'lng': 13.41770199418893}],
         'distance': 461,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wörther Str. 35',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '90125594'}},
       'referralId': 'e-0-4baf47def964a52050f53be3-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b3a08eaf964a5206b6025e3',
        'name': 'Ost Fee',
        'location': {'address': 'Oderberger Str. 32-52',
         'lat': 52.53993,
         'lng': 13.406591,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53993,
           'lng': 13.406591}],
         'distance': 391,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Str. 32-52',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b3a08eaf964a5206b6025e3-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ade2aedf964a520867321e3',
        'name': 'Haliflor',
        'location': {'address': 'Schwedter Str. 26',
         'lat': 52.535321256116106,
         'lng': 13.406845887934676,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.535321256116106,
           'lng': 13.406845887934676}],
         'distance': 403,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schwedter Str. 26',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ade2aedf964a520867321e3-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b9ce6c6f964a520648136e3',
        'name': 'Napoljonska',
        'location': {'address': 'Kastanienallee 43',
         'crossStreet': 'Zionskirchstr.',
         'lat': 52.53485363274298,
         'lng': 13.405777215957642,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53485363274298,
           'lng': 13.405777215957642}],
         'distance': 492,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 43 (Zionskirchstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d143941735',
          'name': 'Breakfast Spot',
          'pluralName': 'Breakfast Spots',
          'shortName': 'Breakfast',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/breakfast_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b9ce6c6f964a520648136e3-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4aaa6225f964a520ca5520e3',
        'name': 'Kaffee Marlene',
        'location': {'address': 'Kastanienallee 103',
         'lat': 52.54005485685901,
         'lng': 13.41135540536447,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54005485685901,
           'lng': 13.41135540536447}],
         'distance': 251,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 103',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '541293222'}},
       'referralId': 'e-0-4aaa6225f964a520ca5520e3-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5979e11b3b830725807bbc5a',
        'name': 'Spooning Cookie Dough Bar',
        'location': {'address': 'Kollwitzstr. 56',
         'crossStreet': 'Knaackstr.',
         'lat': 52.53513618060891,
         'lng': 13.416773127478546,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53513618060891,
           'lng': 13.416773127478546}],
         'distance': 479,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kollwitzstr. 56 (Knaackstr.)',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '543185354'}},
       'referralId': 'e-0-5979e11b3b830725807bbc5a-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '557719d8498ee344d109eaf4',
        'name': 'Pasticceria MangiArte',
        'location': {'address': 'Danziger Str. 23',
         'lat': 52.540408797940074,
         'lng': 13.416893477357972,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.540408797940074,
           'lng': 13.416893477357972}],
         'distance': 482,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Danziger Str. 23',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-557719d8498ee344d109eaf4-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b002763f964a520fb3a22e3',
        'name': 'Bäckerei Plazebo',
        'location': {'address': 'Kastanienallee 26',
         'lat': 52.537398610068536,
         'lng': 13.40844915015134,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.537398610068536,
           'lng': 13.40844915015134}],
         'distance': 191,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 26',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b002763f964a520fb3a22e3-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c8b62dd6418a143cfa2e8ce',
        'name': 'Cuffaro',
        'location': {'address': 'Kollwitzstr. 66',
         'crossStreet': 'Wörther Str.',
         'lat': 52.536298125488905,
         'lng': 13.418000416600396,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.536298125488905,
           'lng': 13.418000416600396}],
         'distance': 489,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kollwitzstr. 66 (Wörther Str.)',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c8b62dd6418a143cfa2e8ce-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57f767fecd10bc66139d7e7d',
        'name': 'Coffee Fellows',
        'location': {'address': 'Pappelallee 1',
         'crossStreet': 'Danziger Str.',
         'lat': 52.541046456394604,
         'lng': 13.412630215293834,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541046456394604,
           'lng': 13.412630215293834}],
         'distance': 374,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pappelallee 1 (Danziger Str.)',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57f767fecd10bc66139d7e7d-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc2611cfa7608e86fd7c06f',
        'name': 'Toscana Espressobar',
        'location': {'address': 'Lychener Straße 5',
         'lat': 52.541051517824584,
         'lng': 13.414620491855063,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541051517824584,
           'lng': 13.414620491855063}],
         'distance': 429,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lychener Straße 5',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc2611cfa7608e86fd7c06f-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5fa06d384b33373e3c0a53bc',
        'name': 'Papa Nô – Prenzlauer Berg',
        'location': {'address': 'Danziger Strasse 11',
         'lat': 52.540813,
         'lng': 13.415019,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.540813,
           'lng': 13.415019}],
         'distance': 423,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Danziger Strasse 11',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '590643731'}},
       'referralId': 'e-0-5fa06d384b33373e3c0a53bc-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bf547d494af2d7f847f3b72',
        'name': 'FIEBIs - Süß & Salzig',
        'location': {'address': 'Danziger Str. 25',
         'lat': 52.54035374892259,
         'lng': 13.417021981463305,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54035374892259,
           'lng': 13.417021981463305}],
         'distance': 486,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Danziger Str. 25',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bf547d494af2d7f847f3b72-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4db02317fa8ca4b3e9dbff76',
        'name': 'Steinecke',
        'location': {'address': 'Kastanienallee 3',
         'lat': 52.54027104483726,
         'lng': 13.411681870826461,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54027104483726,
           'lng': 13.411681870826461}],
         'distance': 277,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 3',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4db02317fa8ca4b3e9dbff76-29'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e3c17e4483b04e17a8328cc',
        'name': 'La Piccola',
        'location': {'address': 'Sredzkistr. 23',
         'crossStreet': 'Husemannstr.',
         'lat': 52.538432,
         'lng': 13.417376,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.538432,
           'lng': 13.417376}],
         'distance': 424,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sredzkistr. 23 (Husemannstr.)',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1c9941735',
          'name': 'Ice Cream Shop',
          'pluralName': 'Ice Cream Shops',
          'shortName': 'Ice Cream',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/icecream_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e3c17e4483b04e17a8328cc-30'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ba4f44bf964a52000c838e3',
        'name': 'Ludmilla',
        'location': {'address': 'Sredzkistr. 33',
         'lat': 52.53839708012759,
         'lng': 13.417112842995403,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53839708012759,
           'lng': 13.417112842995403}],
         'distance': 405,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sredzkistr. 33',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ba4f44bf964a52000c838e3-31'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b967034f964a52041cc34e3',
        'name': 'Endlos',
        'location': {'address': 'Knaackstr. 43-45',
         'crossStreet': 'Kollwitzplatz',
         'lat': 52.53599921608578,
         'lng': 13.416655754998494,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53599921608578,
           'lng': 13.416655754998494}],
         'distance': 420,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Knaackstr. 43-45 (Kollwitzplatz)',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b967034f964a52041cc34e3-32'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e72334c670565cba873'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schönhauser Allee-Nord',
   'headerFullLocation': 'Schönhauser Allee-Nord, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 38,
   'suggestedBounds': {'ne': {'lat': 52.5494000045, 'lng': 13.41998580912074},
    'sw': {'lat': 52.540399995499996, 'lng': 13.405214190879258}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53d95fce498e8e0d4b39488c',
        'name': 'CAFÉ gestern, heute & morgen',
        'location': {'address': 'Gaudystr. 1',
         'crossStreet': 'Schönhauser Allee',
         'lat': 52.546792,
         'lng': 13.412589,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.546792,
           'lng': 13.412589}],
         'distance': 210,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gaudystr. 1 (Schönhauser Allee)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53d95fce498e8e0d4b39488c-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56fd0500498e4f56df2da93a',
        'name': 'OAK & ICE',
        'location': {'address': 'Schönhauser Allee 52',
         'lat': 52.54286062146601,
         'lng': 13.412397943671383,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54286062146601,
           'lng': 13.412397943671383}],
         'distance': 227,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 52',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '173227555'}},
       'referralId': 'e-0-56fd0500498e4f56df2da93a-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b1a0e35f964a52041e723e3',
        'name': 'Blumencafé',
        'location': {'address': 'Schönhauser Allee 127a',
         'lat': 52.54612798568233,
         'lng': 13.412913624488402,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54612798568233,
           'lng': 13.412913624488402}],
         'distance': 138,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 127a',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b1a0e35f964a52041e723e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c714d25872f7d0039a39153',
        'name': 'SPRO Scones Bakery & Coffee',
        'location': {'address': 'Schönhauser Allee 50A',
         'lat': 52.542423,
         'lng': 13.412743,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.542423,
           'lng': 13.412743}],
         'distance': 275,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 50A',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c714d25872f7d0039a39153-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b18388cf964a5200acf23e3',
        'name': 'Le Midi',
        'location': {'address': 'Greifenhagener Str. 17',
         'lat': 52.547169424024155,
         'lng': 13.415257964432527,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547169424024155,
           'lng': 13.415257964432527}],
         'distance': 310,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Greifenhagener Str. 17',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b18388cf964a5200acf23e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a5208c4621e3',
        'name': 'Wohnzimmer',
        'location': {'address': 'Lettestr. 6',
         'crossStreet': 'Schliemannstr.',
         'lat': 52.543396390064636,
         'lng': 13.419287620066626,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.543396390064636,
           'lng': 13.419287620066626}],
         'distance': 482,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lettestr. 6 (Schliemannstr.)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a5208c4621e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af5ff75f964a520f7ff21e3',
        'name': 'Café Butter',
        'location': {'address': 'Pappelallee 73',
         'lat': 52.544014850331,
         'lng': 13.41544470335191,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.544014850331,
           'lng': 13.41544470335191}],
         'distance': 216,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pappelallee 73',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af5ff75f964a520f7ff21e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b437031a6031c002cac30d9',
        'name': 'Samer Café',
        'location': {'address': 'Gleimstr. 44',
         'lat': 52.547334,
         'lng': 13.408378,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547334,
           'lng': 13.408378}],
         'distance': 393,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleimstr. 44', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b437031a6031c002cac30d9-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ff43e91e4b05ae522c86f34',
        'name': 'Caffè Monelli',
        'location': {'address': 'Greifenhagener Straße 53',
         'lat': 52.547962,
         'lng': 13.415492,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547962,
           'lng': 13.415492}],
         'distance': 393,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Greifenhagener Straße 53',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ff43e91e4b05ae522c86f34-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4be533992457a593823cab15',
        'name': 'Pakolat',
        'location': {'address': 'Raumerstr. 40',
         'lat': 52.54381372971663,
         'lng': 13.416153352998345,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54381372971663,
           'lng': 13.416153352998345}],
         'distance': 269,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raumerstr. 40', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4be533992457a593823cab15-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '593917d34928140396e2e3a0',
        'name': 'Rosa Wolf',
        'location': {'address': 'Eberswalder Str. 32',
         'lat': 52.541104,
         'lng': 13.409779,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541104,
           'lng': 13.409779}],
         'distance': 463,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eberswalder Str. 32',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-593917d34928140396e2e3a0-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cbaea0c9552b60cf3dddc8b',
        'name': 'Krümel',
        'location': {'address': 'Stargarder Str. 73',
         'lat': 52.54686452998733,
         'lng': 13.417434498363193,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54686452998733,
           'lng': 13.417434498363193}],
         'distance': 393,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stargarder Str. 73',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cbaea0c9552b60cf3dddc8b-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5148bd55e4b038d0658bf300',
        'name': 'L24 - Wein & Pflanzen',
        'location': {'address': 'Lychener Straße 24',
         'lat': 52.54279193110331,
         'lng': 13.416502700305251,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54279193110331,
           'lng': 13.416502700305251}],
         'distance': 353,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lychener Straße 24', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5148bd55e4b038d0658bf300-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a5ca954fc9e94066537331d',
        'name': 'Tilda',
        'location': {'address': 'Raumerstr. 7',
         'crossStreet': 'Helmholtzplatz',
         'lat': 52.5429469102725,
         'lng': 13.4177827835083,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5429469102725,
           'lng': 13.4177827835083}],
         'distance': 412,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raumerstr. 7 (Helmholtzplatz)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a5ca954fc9e94066537331d-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '556da04e498e12a6fc504fc5',
        'name': 'Café BOM',
        'location': {'address': 'Kopenhagener Straße 7',
         'lat': 52.548838233786846,
         'lng': 13.411160528556207,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.548838233786846,
           'lng': 13.411160528556207}],
         'distance': 449,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kopenhagener Straße 7',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-556da04e498e12a6fc504fc5-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a5208e4621e3',
        'name': 'Marietta',
        'location': {'address': 'Stargarder Str. 13',
         'lat': 52.54682913858359,
         'lng': 13.417461549794265,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54682913858359,
           'lng': 13.417461549794265}],
         'distance': 392,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stargarder Str. 13',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a5208e4621e3-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0b9d0ef964a5209d3223e3',
        'name': 'Kaffee, Snacks & Backwaren',
        'location': {'address': 'Gleimstr. 26',
         'lat': 52.54742440798685,
         'lng': 13.411688804626465,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54742440798685,
           'lng': 13.411688804626465}],
         'distance': 287,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleimstr. 26', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0b9d0ef964a5209d3223e3-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53cb7a3b498e9b1d665b41a1',
        'name': 'norah',
        'location': {'lat': 52.546919,
         'lng': 13.406335,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.546919,
           'lng': 13.406335}],
         'distance': 479,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53cb7a3b498e9b1d665b41a1-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54548df1498e1fd1b28db69f',
        'name': 'Linnen Café',
        'location': {'address': 'Eberswalder Str. 35',
         'lat': 52.54142820895986,
         'lng': 13.408899307250977,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54142820895986,
           'lng': 13.408899307250977}],
         'distance': 460,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eberswalder Str. 35',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54548df1498e1fd1b28db69f-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58df7db7d772f93b136a5832',
        'name': 'Wanderlust Café & Yoga',
        'location': {'address': 'Gleimstr. 40',
         'crossStreet': 'Rhinower Str.',
         'lat': 52.54739274268762,
         'lng': 13.409551979957337,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54739274268762,
           'lng': 13.409551979957337}],
         'distance': 345,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleimstr. 40 (Rhinower Str.)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58df7db7d772f93b136a5832-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6b1c94e4b0a9c2c159d96e',
        'name': 'Cafe Rhino',
        'location': {'address': 'Rhinower Str. 5',
         'crossStreet': 'Kopenhagener Str.',
         'lat': 52.54846175740072,
         'lng': 13.409976094261825,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54846175740072,
           'lng': 13.409976094261825}],
         'distance': 434,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rhinower Str. 5 (Kopenhagener Str.)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6b1c94e4b0a9c2c159d96e-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51ca8368498e492b1f2435a3',
        'name': 'Spreegold',
        'location': {'address': 'Stargarder Str. 82',
         'crossStreet': 'Schönhauser Allee',
         'lat': 52.547772,
         'lng': 13.413919,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547772,
           'lng': 13.413919}],
         'distance': 331,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stargarder Str. 82 (Schönhauser Allee)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51ca8368498e492b1f2435a3-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4de93e9952b1741cdb17e0cd',
        'name': 'Hokey Pokey',
        'location': {'address': 'Stargarder Str. 72-73',
         'lat': 52.54676547402726,
         'lng': 13.417608402042815,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54676547402726,
           'lng': 13.417608402042815}],
         'distance': 397,
         'postalCode': '10437',
         'cc': 'DE',
         'neighborhood': 'Schönhauser Allee-Nord',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stargarder Str. 72-73',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1c9941735',
          'name': 'Ice Cream Shop',
          'pluralName': 'Ice Cream Shops',
          'shortName': 'Ice Cream',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/icecream_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4de93e9952b1741cdb17e0cd-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e27cb2f18384dd0a0d9ddfe',
        'name': 'Zuccherino',
        'location': {'address': 'Gleimstr. 20 A',
         'crossStreet': 'Cantianstr.',
         'lat': 52.54729312764255,
         'lng': 13.409788188998656,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54729312764255,
           'lng': 13.409788188998656}],
         'distance': 327,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleimstr. 20 A (Cantianstr.)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e27cb2f18384dd0a0d9ddfe-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda7af964a520e84621e3',
        'name': 'Zu Mir oder Zu Dir',
        'location': {'address': 'Lychener Str. 15',
         'lat': 52.5419064810783,
         'lng': 13.415445226221136,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5419064810783,
           'lng': 13.415445226221136}],
         'distance': 384,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lychener Str. 15',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d116941735',
          'name': 'Bar',
          'pluralName': 'Bars',
          'shortName': 'Bar',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/nightlife/pub_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda7af964a520e84621e3-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b88eb92f964a5207f1332e3',
        'name': 'Café IM NU',
        'location': {'address': 'Lychener Str. 41',
         'crossStreet': 'Helmholtzplatz',
         'lat': 52.54378992450207,
         'lng': 13.41768968234273,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54378992450207,
           'lng': 13.41768968234273}],
         'distance': 366,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lychener Str. 41 (Helmholtzplatz)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b88eb92f964a5207f1332e3-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c48954676d72d7f9df7404d',
        'name': 'Freiraum',
        'location': {'address': 'Buchholzer Str. 5',
         'crossStreet': 'Greifenhagener Straße',
         'lat': 52.54513757303052,
         'lng': 13.41486425630556,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54513757303052,
           'lng': 13.41486425630556}],
         'distance': 155,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Buchholzer Str. 5 (Greifenhagener Straße)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c48954676d72d7f9df7404d-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e6363ea7d8b85408a0ffe65',
        'name': 'Schrippenschuster',
        'location': {'address': 'Raumerstr. 9',
         'lat': 52.54295449098173,
         'lng': 13.418245458627403,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54295449098173,
           'lng': 13.418245458627403}],
         'distance': 439,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raumerstr. 9', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e6363ea7d8b85408a0ffe65-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e12fb8bb0fbfef99b9eda69',
        'name': 'Café Libertad',
        'location': {'address': 'Gleimstr. 17',
         'lat': 52.54732178591585,
         'lng': 13.408625411854072,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54732178591585,
           'lng': 13.408625411854072}],
         'distance': 380,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleimstr. 17', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e12fb8bb0fbfef99b9eda69-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57cc0eea498eb312ca040891',
        'name': 'kulteis',
        'location': {'lat': 52.547179,
         'lng': 13.408971,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547179,
           'lng': 13.408971}],
         'distance': 353,
         'cc': 'DE',
         'neighborhood': 'Schönhauser Allee-Nord',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57cc0eea498eb312ca040891-29'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d46b3a6ab5d1c0008975073',
        'name': 'ShuGa',
        'location': {'lat': 52.547402,
         'lng': 13.408804,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547402,
           'lng': 13.408804}],
         'distance': 378,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d46b3a6ab5d1c0008975073-30'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c2e69ea037be1002ceef4c5',
        'name': 'YogaCafé - Mindful Life',
        'location': {'address': 'Gleimstraße 40',
         'lat': 52.5477687,
         'lng': 13.4094383,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5477687,
           'lng': 13.4094383}],
         'distance': 384,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleimstraße 40',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '583945090'}},
       'referralId': 'e-0-5c2e69ea037be1002ceef4c5-31'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57f767fecd10bc66139d7e7d',
        'name': 'Coffee Fellows',
        'location': {'address': 'Pappelallee 1',
         'crossStreet': 'Danziger Str.',
         'lat': 52.541046456394604,
         'lng': 13.412630215293834,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541046456394604,
           'lng': 13.412630215293834}],
         'distance': 428,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pappelallee 1 (Danziger Str.)',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57f767fecd10bc66139d7e7d-32'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5f98447b1f67181f27749a2a',
        'name': 'Schrippenschuster Berlin',
        'location': {'address': 'Raumerstr. 9',
         'lat': 52.5427945,
         'lng': 13.4180771,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5427945,
           'lng': 13.4180771}],
         'distance': 438,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raumerstr. 9', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5f98447b1f67181f27749a2a-33'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e7ccb68f4be320008f71162',
        'name': 'Luongo Angelo Schrippenschuster Bäckerei Cafe´',
        'location': {'address': 'Raumerstr. 9',
         'lat': 52.5427945,
         'lng': 13.4180771,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5427945,
           'lng': 13.4180771}],
         'distance': 438,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raumerstr. 9', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '585671898'}},
       'referralId': 'e-0-5e7ccb68f4be320008f71162-34'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc2611cfa7608e86fd7c06f',
        'name': 'Toscana Espressobar',
        'location': {'address': 'Lychener Straße 5',
         'lat': 52.541051517824584,
         'lng': 13.414620491855063,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541051517824584,
           'lng': 13.414620491855063}],
         'distance': 449,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lychener Straße 5',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc2611cfa7608e86fd7c06f-35'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f62ea35e4b0e78cff20f2ff',
        'name': 'Pappelback',
        'location': {'address': 'Pappelallee 57',
         'lat': 52.54639155077099,
         'lng': 13.418019788632524,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54639155077099,
           'lng': 13.418019788632524}],
         'distance': 402,
         'postalCode': '10437',
         'cc': 'DE',
         'neighborhood': 'Schönhauser Allee-Nord',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pappelallee 57',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f62ea35e4b0e78cff20f2ff-36'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5fa06d384b33373e3c0a53bc',
        'name': 'Papa Nô – Prenzlauer Berg',
        'location': {'address': 'Danziger Strasse 11',
         'lat': 52.540813,
         'lng': 13.415019,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.540813,
           'lng': 13.415019}],
         'distance': 483,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Danziger Strasse 11',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '590643731'}},
       'referralId': 'e-0-5fa06d384b33373e3c0a53bc-37'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7212d8516a989421bf'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schönhauser Allee-Nord',
   'headerFullLocation': 'Schönhauser Allee-Nord, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 19,
   'suggestedBounds': {'ne': {'lat': 52.5567000045, 'lng': 13.419487037736545},
    'sw': {'lat': 52.5476999955, 'lng': 13.404712962263456}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '544b8506498eac061c29ed1e',
        'name': 'Lola was here',
        'location': {'address': 'Seelower Str. 8',
         'crossStreet': 'Arnimplatz',
         'lat': 52.55190000123299,
         'lng': 13.410665714790376,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55190000123299,
           'lng': 13.410665714790376}],
         'distance': 102,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Seelower Str. 8 (Arnimplatz)',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '216103364'}},
       'referralId': 'e-0-544b8506498eac061c29ed1e-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af3de8af964a52082ef21e3',
        'name': 'Cafe Sgaminegg',
        'location': {'address': 'Seelower Str. 2',
         'lat': 52.55049861916095,
         'lng': 13.410302748854456,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55049861916095,
           'lng': 13.410302748854456}],
         'distance': 225,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Seelower Str. 2',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af3de8af964a52082ef21e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59636fb6e2da191dcb678a07',
        'name': 'Unser Café',
        'location': {'address': 'Dänenstr. 14',
         'lat': 52.550083,
         'lng': 13.408408,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.550083,
           'lng': 13.408408}],
         'distance': 343,
         'postalCode': '10439',
         'cc': 'DE',
         'neighborhood': 'Schönhauser Allee-Nord',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dänenstr. 14', '10439 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59636fb6e2da191dcb678a07-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b24dd41f964a520386a24e3',
        'name': 'Café Milchbart',
        'location': {'address': 'Paul-Robeson-Str. 6',
         'lat': 52.552332131592664,
         'lng': 13.411752938228044,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.552332131592664,
           'lng': 13.411752938228044}],
         'distance': 27,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Robeson-Str. 6',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b24dd41f964a520386a24e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '556da04e498e12a6fc504fc5',
        'name': 'Café BOM',
        'location': {'address': 'Kopenhagener Straße 7',
         'lat': 52.548838233786846,
         'lng': 13.411160528556207,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.548838233786846,
           'lng': 13.411160528556207}],
         'distance': 379,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kopenhagener Straße 7',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-556da04e498e12a6fc504fc5-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '535cffd7498e40a294172ad0',
        'name': 'Schneiderei',
        'location': {'address': 'Kuglerstr. 31',
         'lat': 52.55214401770024,
         'lng': 13.419189436197248,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55214401770024,
           'lng': 13.419189436197248}],
         'distance': 479,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kuglerstr. 31', '10439 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-535cffd7498e40a294172ad0-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b86ab8af964a520409531e3',
        'name': 'Sonntags-Club',
        'location': {'address': 'Greifenhagener Str. 28',
         'lat': 52.551277013837286,
         'lng': 13.418536362155976,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.551277013837286,
           'lng': 13.418536362155976}],
         'distance': 447,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Greifenhagener Str. 28',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b86ab8af964a520409531e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c82662ec0f163002cacd4a7',
        'name': 'Naschpunkt',
        'location': {'address': 'Seelower Str. 4',
         'lat': 52.551089,
         'lng': 13.410586,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.551089,
           'lng': 13.410586}],
         'distance': 160,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Seelower Str. 4',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c82662ec0f163002cacd4a7-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bab56fbf964a520b7a13ae3',
        'name': 'Elf',
        'location': {'address': 'Paul-Robeson-Str. 11',
         'crossStreet': 'Arnimplatz',
         'lat': 52.552593,
         'lng': 13.409639,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.552593,
           'lng': 13.409639}],
         'distance': 172,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Robeson-Str. 11 (Arnimplatz)',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bab56fbf964a520b7a13ae3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '518e5434498ef0d38fe36497',
        'name': 'Café Arnim',
        'location': {'address': 'Paul-Robeson-Str. 14',
         'lat': 52.552682641732666,
         'lng': 13.40878665447235,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.552682641732666,
           'lng': 13.40878665447235}],
         'distance': 230,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Robeson-Str. 14',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-518e5434498ef0d38fe36497-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6b1c94e4b0a9c2c159d96e',
        'name': 'Cafe Rhino',
        'location': {'address': 'Rhinower Str. 5',
         'crossStreet': 'Kopenhagener Str.',
         'lat': 52.54846175740072,
         'lng': 13.409976094261825,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54846175740072,
           'lng': 13.409976094261825}],
         'distance': 440,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rhinower Str. 5 (Kopenhagener Str.)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6b1c94e4b0a9c2c159d96e-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5724a41c498e82cf957b635b',
        'name': 'Bolle Eis',
        'location': {'address': 'Bornholmer Straße 14',
         'lat': 52.554305,
         'lng': 13.408108,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.554305,
           'lng': 13.408108}],
         'distance': 357,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bornholmer Straße 14',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5724a41c498e82cf957b635b-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '589270f59c439d22b7aa899f',
        'name': 'Pjano Please',
        'location': {'address': 'Schivelbeinerstr. 8',
         'lat': 52.551016,
         'lng': 13.411354,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.551016,
           'lng': 13.411354}],
         'distance': 141,
         'cc': 'DE',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schivelbeinerstr. 8', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-589270f59c439d22b7aa899f-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58e0d75f03cf2507c40e8cc6',
        'name': 'Les Enfants Du Paradis',
        'location': {'address': 'Schönfließer Str. 16',
         'lat': 52.55149,
         'lng': 13.40802,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55149,
           'lng': 13.40802}],
         'distance': 287,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönfließer Str. 16',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58e0d75f03cf2507c40e8cc6-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e8c4a4f6c25fbeecd8173c2',
        'name': 'Maître vite',
        'location': {'address': 'Schönhauser Allee 79',
         'lat': 52.54941686896794,
         'lng': 13.415170473742581,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54941686896794,
           'lng': 13.415170473742581}],
         'distance': 373,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 79',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e8c4a4f6c25fbeecd8173c2-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58dfe748e0adac7f5dd548cb',
        'name': 'Café Dreieck',
        'location': {'address': 'Greifenhagener Straße 38',
         'crossStreet': 'Kuglerstraße',
         'lat': 52.55203,
         'lng': 13.418932,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55203,
           'lng': 13.418932}],
         'distance': 462,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Greifenhagener Straße 38 (Kuglerstraße)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58dfe748e0adac7f5dd548cb-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ba8cda38b98fd002c664308',
        'name': 'Kaffee Schiller',
        'location': {'address': 'Schönhauser Allee 80',
         'lat': 52.549746,
         'lng': 13.414196,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.549746,
           'lng': 13.414196}],
         'distance': 307,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 80',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ba8cda38b98fd002c664308-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ade2c76f964a520987321e3',
        'name': 'Kohlenquelle',
        'location': {'address': 'Kopenhagener Str. 16',
         'crossStreet': 'Sonnenburger Str.',
         'lat': 52.5491948878409,
         'lng': 13.40795265707412,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5491948878409,
           'lng': 13.40795265707412}],
         'distance': 436,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kopenhagener Str. 16 (Sonnenburger Str.)',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d11b941735',
          'name': 'Pub',
          'pluralName': 'Pubs',
          'shortName': 'Pub',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/nightlife/pub_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ade2c76f964a520987321e3-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cdf2332abfb2c0f7f489b5a',
        'name': 'Bisquitte',
        'location': {'address': 'Schönhauser Allee 114',
         'lat': 52.550066651338206,
         'lng': 13.413362503051758,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.550066651338206,
           'lng': 13.413362503051758}],
         'distance': 252,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 114',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cdf2332abfb2c0f7f489b5a-18'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e73d64a734725266e95'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Turmstraße',
   'headerFullLocation': 'Turmstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 10,
   'suggestedBounds': {'ne': {'lat': 52.535200004500005,
     'lng': 13.344583420724096},
    'sw': {'lat': 52.5261999955, 'lng': 13.329816579275903}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55229e08498e1c00ce660e4c',
        'name': 'Einer dieser Tage',
        'location': {'address': 'Waldstr. 32',
         'lat': 52.53238792130165,
         'lng': 13.3317325258927,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53238792130165,
           'lng': 13.3317325258927}],
         'distance': 415,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Waldstr. 32', '10551 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55229e08498e1c00ce660e4c-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51fd7012498e32e3a0e1ef94',
        'name': 'Tirrée',
        'location': {'address': 'Birkenstr. 46',
         'crossStreet': 'Wilhelmshavener Str.',
         'lat': 52.532153741214614,
         'lng': 13.341539621589543,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.532153741214614,
           'lng': 13.341539621589543}],
         'distance': 335,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Birkenstr. 46 (Wilhelmshavener Str.)',
          '10551 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51fd7012498e32e3a0e1ef94-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51a9f430498e0972655cadef',
        'name': 'Natürlicher Lebensraum',
        'location': {'address': 'Jonasstr. 7',
         'lat': 52.52773631933308,
         'lng': 13.339344263076782,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52773631933308,
           'lng': 13.339344263076782}],
         'distance': 360,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jonasstr. 7', '10551 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51a9f430498e0972655cadef-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5765c066498ec6de8e2b735b',
        'name': 'KOWSKI',
        'location': {'address': 'Wilhelmshavener Str. 4',
         'lat': 52.527820615830024,
         'lng': 13.341444789252778,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.527820615830024,
           'lng': 13.341444789252778}],
         'distance': 430,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilhelmshavener Str. 4',
          '10551 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5765c066498ec6de8e2b735b-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b445560f964a520e9f325e3',
        'name': 'Arema Café & Restaurant',
        'location': {'address': 'Birkenstr. 30',
         'lat': 52.53224629268898,
         'lng': 13.34228664798818,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53224629268898,
           'lng': 13.34228664798818}],
         'distance': 385,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Birkenstr. 30', '10551 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b445560f964a520e9f325e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4de3acbee4cd056f74603eff',
        'name': 'Café & Simit Evi',
        'location': {'address': 'Turmstr. 39',
         'lat': 52.52915018239252,
         'lng': 13.337161177135163,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52915018239252,
           'lng': 13.337161177135163}],
         'distance': 172,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Turmstr. 39', '10551 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4de3acbee4cd056f74603eff-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c7d0b2b7a856dcb16cce3a7',
        'name': 'Café Zina',
        'location': {'address': 'Waldenserstraße',
         'crossStreet': 'Oldenburger Straße',
         'lat': 52.528644388173525,
         'lng': 13.335838671803234,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.528644388173525,
           'lng': 13.335838671803234}],
         'distance': 246,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Waldenserstraße (Oldenburger Straße)',
          '10551 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c7d0b2b7a856dcb16cce3a7-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '512a2741e4b0701b3776de0c',
        'name': 'cafe creme caramel',
        'location': {'address': 'Pariser Str. 59',
         'crossStreet': 'Fasanenstraße',
         'lat': 52.5322119975596,
         'lng': 13.341787929495089,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5322119975596,
           'lng': 13.341787929495089}],
         'distance': 353,
         'postalCode': '10719',
         'cc': 'DE',
         'neighborhood': 'Turmstraße',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pariser Str. 59 (Fasanenstraße)',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-512a2741e4b0701b3776de0c-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6ca4c6e4b0e42841871270',
        'name': 'Café Moabit',
        'location': {'address': 'Emdener Str. 55',
         'lat': 52.52796099464806,
         'lng': 13.33354183089473,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52796099464806,
           'lng': 13.33354183089473}],
         'distance': 392,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Emdener Str. 55',
          '10551 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6ca4c6e4b0e42841871270-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e2a901ee4cd3bc1668b63cf',
        'name': 'Café Bistro Jonas',
        'location': {'address': 'Jonasstr. 1',
         'lat': 52.52666544887611,
         'lng': 13.339065892548481,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52666544887611,
           'lng': 13.339065892548481}],
         'distance': 466,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jonasstr. 1', '10551 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e2a901ee4cd3bc1668b63cf-9'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e73c699df34c85bf2cd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Westhafen',
   'headerFullLocation': 'Westhafen, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.535000004500006,
     'lng': 13.328883387098978},
    'sw': {'lat': 52.5259999955, 'lng': 13.314116612901023}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7466505c5f6f85deaf'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 7,
   'suggestedBounds': {'ne': {'lat': 52.526000004500006,
     'lng': 13.342881874378595},
    'sw': {'lat': 52.5169999955, 'lng': 13.328118125621405}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5908787235d3fc5e1cc34bfd',
        'name': 'Café Ella',
        'location': {'address': 'Elberfelder Str. 9',
         'lat': 52.522629,
         'lng': 13.335777,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.522629,
           'lng': 13.335777}],
         'distance': 127,
         'postalCode': '10555',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Elberfelder Str. 9',
          '10555 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5908787235d3fc5e1cc34bfd-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bf13fd23a15d13ad8523f9f',
        'name': 'Fiaker',
        'location': {'address': 'Bochumer Str. 5',
         'lat': 52.52369193495437,
         'lng': 13.338041897270227,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52369193495437,
           'lng': 13.338041897270227}],
         'distance': 298,
         'postalCode': '10555',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bochumer Str. 5',
          '10555 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bf13fd23a15d13ad8523f9f-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e46ef31887781a619b22146',
        'name': 'Mauerwerk',
        'location': {'address': 'Zwinglistr. 7',
         'lat': 52.52560853367,
         'lng': 13.332909862887456,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52560853367,
           'lng': 13.332909862887456}],
         'distance': 489,
         'postalCode': '10555',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Zwinglistr. 7', '10555 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '79378905'}},
       'referralId': 'e-0-4e46ef31887781a619b22146-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a520994521e3',
        'name': 'Gaststätte Walhalla',
        'location': {'address': 'Krefelder Strasse 6',
         'lat': 52.52423,
         'lng': 13.339362,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52423,
           'lng': 13.339362}],
         'distance': 400,
         'postalCode': '10555',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Krefelder Strasse 6',
          '10555 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a520994521e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c209036d38ec9b6443b4e83',
        'name': 'Buchkantine',
        'location': {'address': 'Dortmunder Straße 1',
         'crossStreet': 'Bochumer Str.',
         'lat': 52.521405,
         'lng': 13.3381637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.521405,
           'lng': 13.3381637}],
         'distance': 180,
         'postalCode': '10555',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dortmunder Straße 1 (Bochumer Str.)',
          '10555 Berlin',
          'Deutschland']},
        'categories': [{'id': '52e81612bcbc57f1066b79f1',
          'name': 'Bistro',
          'pluralName': 'Bistros',
          'shortName': 'Bistro',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/default_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '594964270'}},
       'referralId': 'e-0-4c209036d38ec9b6443b4e83-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f929368e4b0324618c2281a',
        'name': 'Cafe Spree-Blick',
        'location': {'address': 'Hansabrücke',
         'crossStreet': 'Altonaer Str./Levetzowstr.',
         'lat': 52.5197036775428,
         'lng': 13.338581126558712,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5197036775428,
           'lng': 13.338581126558712}],
         'distance': 289,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hansabrücke (Altonaer Str./Levetzowstr.)',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f929368e4b0324618c2281a-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5717bf73498e9e93457d7a47',
        'name': 'mia y leo',
        'location': {'address': 'Jagowstraße 26',
         'crossStreet': 'Alt-Moabit',
         'lat': 52.52388511409241,
         'lng': 13.333861827850342,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52388511409241,
           'lng': 13.333861827850342}],
         'distance': 287,
         'postalCode': '10555',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jagowstraße 26 (Alt-Moabit)',
          '10555 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5717bf73498e9e93457d7a47-6'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e744450ba020e223340'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5278000045, 'lng': 13.36678217685851},
    'sw': {'lat': 52.5187999955, 'lng': 13.352017823141491}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51705ff7e4b0173551a7ad2a',
        'name': 'Ala Eldin',
        'location': {'lat': 52.52506551989954,
         'lng': 13.35829196459464,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52506551989954,
           'lng': 13.35829196459464}],
         'distance': 210,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51705ff7e4b0173551a7ad2a-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e899095b634263379f99f65',
        'name': 'Traum Bäckerei',
        'location': {'address': 'Paulstr. 21 a',
         'lat': 52.520092,
         'lng': 13.355833,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520092,
           'lng': 13.355833}],
         'distance': 431,
         'postalCode': '10557',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paulstr. 21 a', '10557 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e899095b634263379f99f65-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e75d859ad1d9fde6e06'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Moabit',
   'headerFullLocation': 'Moabit, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5346000045, 'lng': 13.357283319849927},
    'sw': {'lat': 52.525599995499995, 'lng': 13.342516680150073}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50d448aae4b038b59eaeca5e',
        'name': 'Thea & coffee',
        'location': {'address': 'Birkenstr. 19',
         'lat': 52.531051148755026,
         'lng': 13.34619112126696,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.531051148755026,
           'lng': 13.34619112126696}],
         'distance': 272,
         'postalCode': '10559',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Birkenstr. 19', '10559 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50d448aae4b038b59eaeca5e-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5969ccd97cc90f68a5228799',
        'name': 'Café MOA Bogen',
        'location': {'address': 'Stephanstr. 37-43',
         'crossStreet': 'Birkenstr.',
         'lat': 52.53169161251215,
         'lng': 13.344419002532957,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53169161251215,
           'lng': 13.344419002532957}],
         'distance': 411,
         'postalCode': '10559',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stephanstr. 37-43 (Birkenstr.)',
          '10559 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5969ccd97cc90f68a5228799-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e75726940047d4c7dd3'},
  'response': {'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.5197000045, 'lng': 13.31308081595143},
    'sw': {'lat': 52.5106999955, 'lng': 13.29831918404857}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d2dc787f728b60c27859dfd',
        'name': 'Exclusive Coffee',
        'location': {'address': 'Bismarckstr. 46',
         'lat': 52.513408849631595,
         'lng': 13.305343609541598,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513408849631595,
           'lng': 13.305343609541598}],
         'distance': 200,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bismarckstr. 46',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d2dc787f728b60c27859dfd-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53dcd7c9498e33be7840de9c',
        'name': 'Café con amore',
        'location': {'address': 'Girkezeile 31',
         'crossStreet': 'Haubach Str.',
         'lat': 52.51571905790991,
         'lng': 13.3028089578205,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51571905790991,
           'lng': 13.3028089578205}],
         'distance': 204,
         'postalCode': '10585',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Girkezeile 31 (Haubach Str.)',
          '10585 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53dcd7c9498e33be7840de9c-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '524ea7e911d27fc1d2963d01',
        'name': 'La Femme',
        'location': {'address': 'Wilmersdorfer Str. 135',
         'lat': 52.51152117044885,
         'lng': 13.305503740823424,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51152117044885,
           'lng': 13.305503740823424}],
         'distance': 409,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 135',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-524ea7e911d27fc1d2963d01-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e2470a8b61cdcf1ecdc39be',
        'name': 'Sinnbild',
        'location': {'address': 'Wilmersdorfer Str. 153',
         'lat': 52.51470723,
         'lng': 13.30502527,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51470723,
           'lng': 13.30502527}],
         'distance': 71,
         'postalCode': '10585',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 153',
          '10585 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e2470a8b61cdcf1ecdc39be-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b02aecbbfc6d0002c0a18f2',
        'name': 'Haus 77 Café',
        'location': {'address': 'Kaiser-Friedrich Str. 77',
         'lat': 52.51159734935449,
         'lng': 13.30174371600151,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51159734935449,
           'lng': 13.30174371600151}],
         'distance': 482,
         'postalCode': '10585',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kaiser-Friedrich Str. 77',
          '10585 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '495103081'}},
       'referralId': 'e-0-5b02aecbbfc6d0002c0a18f2-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e75a5d23e3a41ac97de'},
  'response': {'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.5229000045, 'lng': 13.326881353516143},
    'sw': {'lat': 52.5138999955, 'lng': 13.312118646483857}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b8e7fbff964a520862533e3',
        'name': 'Café Südwind',
        'location': {'address': 'Guerickestr. 38',
         'lat': 52.51777337717899,
         'lng': 13.31636779980607,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51777337717899,
           'lng': 13.31636779980607}],
         'distance': 223,
         'postalCode': '10587',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Guerickestr. 38',
          '10587 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b8e7fbff964a520862533e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b2783cdf964a520088724e3',
        'name': 'Bares Café & Restaurant',
        'location': {'address': 'Helmholtzstraße 37',
         'crossStreet': 'Morsestraße',
         'lat': 52.52120681504498,
         'lng': 13.32273265543714,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52120681504498,
           'lng': 13.32273265543714}],
         'distance': 381,
         'postalCode': '10587',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Helmholtzstraße 37 (Morsestraße)',
          '10587 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b2783cdf964a520088724e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6c1800f964a52086232ce3',
        'name': 'UdK Jazz Café',
        'location': {'address': 'Einsteinufer 43 - 53',
         'lat': 52.517071243828205,
         'lng': 13.32304984331131,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517071243828205,
           'lng': 13.32304984331131}],
         'distance': 282,
         'postalCode': '10587',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Einsteinufer 43 - 53',
          '10587 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6c1800f964a52086232ce3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bf52467cad2c928d9a49c99',
        'name': 'Café Restaurant Am Salzufer',
        'location': {'address': 'Salzufer 13',
         'lat': 52.51832049375986,
         'lng': 13.323509379160837,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51832049375986,
           'lng': 13.323509379160837}],
         'distance': 271,
         'postalCode': '10587',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Salzufer 13', '10587 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d110941735',
          'name': 'Italian Restaurant',
          'pluralName': 'Italian Restaurants',
          'shortName': 'Italian',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/italian_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bf52467cad2c928d9a49c99-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e764769b85071a8a3b8'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.5321000045, 'lng': 13.313082899579266},
    'sw': {'lat': 52.5230999955, 'lng': 13.298317100420734}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5872b3c7cf445106b7b48db4',
        'name': 'Café Friedrichs',
        'location': {'address': 'Mierendorffplatz 2',
         'crossStreet': 'Nordhauser Str.',
         'lat': 52.52486589999999,
         'lng': 13.3042568,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52486589999999,
           'lng': 13.3042568}],
         'distance': 319,
         'postalCode': '10589',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mierendorffplatz 2 (Nordhauser Str.)',
          '10589 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5872b3c7cf445106b7b48db4-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b433908f964a5202edd25e3',
        'name': 'Coffeemeer',
        'location': {'address': 'Mierendorffplatz 5',
         'lat': 52.52503328882538,
         'lng': 13.303625971170897,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52503328882538,
           'lng': 13.303625971170897}],
         'distance': 318,
         'postalCode': '10589',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mierendorffplatz 5',
          '10589 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b433908f964a5202edd25e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b86b035f964a5205f9631e3',
        'name': 'Musik Z Cafe',
        'location': {'address': 'Mierendorfstraße',
         'lat': 52.524596398942094,
         'lng': 13.302840483744465,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.524596398942094,
           'lng': 13.302840483744465}],
         'distance': 386,
         'postalCode': '10589',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mierendorfstraße',
          '10589 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d116941735',
          'name': 'Bar',
          'pluralName': 'Bars',
          'shortName': 'Bar',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/nightlife/pub_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b86b035f964a5205f9631e3-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e76e6b2a1698428dcec'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Hardenbergstraße',
   'headerFullLocation': 'Hardenbergstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 22,
   'suggestedBounds': {'ne': {'lat': 52.5133000045, 'lng': 13.334779741125919},
    'sw': {'lat': 52.5042999955, 'lng': 13.320020258874083}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520ca4521e3',
        'name': 'Schwarzes Café',
        'location': {'address': 'Kantstr. 148',
         'lat': 52.505455,
         'lng': 13.324221,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.505455,
           'lng': 13.324221}],
         'distance': 430,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 148', '10623 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520ca4521e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50129b0fe4b0748a789d415c',
        'name': 'BioBackHaus',
        'location': {'address': 'Knesebeckstr. 12',
         'crossStreet': 'Goethestr.',
         'lat': 52.50879630998174,
         'lng': 13.32254016964866,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50879630998174,
           'lng': 13.32254016964866}],
         'distance': 329,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Knesebeckstr. 12 (Goethestr.)',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50129b0fe4b0748a789d415c-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c9b7c1d292a6dcbb2eed776',
        'name': 'WiwiCafé',
        'location': {'address': 'Straße des 17. Juni 135',
         'crossStreet': 'Erweiterungsbau EB',
         'lat': 52.511794052468275,
         'lng': 13.324989080429077,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.511794052468275,
           'lng': 13.324989080429077}],
         'distance': 371,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Straße des 17. Juni 135 (Erweiterungsbau EB)',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c9b7c1d292a6dcbb2eed776-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d2ef8c779dd6ea8487e8dd3',
        'name': 'Mamma Monti',
        'location': {'address': 'Carmerstraße 11',
         'crossStreet': 'Savignyplatz',
         'lat': 52.50690047078078,
         'lng': 13.323732342497513,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50690047078078,
           'lng': 13.323732342497513}],
         'distance': 326,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Carmerstraße 11 (Savignyplatz)',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d2ef8c779dd6ea8487e8dd3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ea2ce90dab4725270136918',
        'name': 'Giro',
        'location': {'address': 'Knesebeckstr. 5',
         'lat': 52.51016998072351,
         'lng': 13.323098822469232,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51016998072351,
           'lng': 13.323098822469232}],
         'distance': 328,
         'postalCode': '10623',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Knesebeckstr. 5',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ea2ce90dab4725270136918-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520cd4521e3',
        'name': 'Café Hardenberg',
        'location': {'address': 'Hardenbergstr. 10',
         'lat': 52.509224396439436,
         'lng': 13.324828618068134,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.509224396439436,
           'lng': 13.324828618068134}],
         'distance': 180,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergstr. 10',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520cd4521e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520d54521e3',
        'name': 'Café Savigny',
        'location': {'address': 'Grolmanstr. 53-54',
         'lat': 52.50734344645246,
         'lng': 13.321165492025905,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50734344645246,
           'lng': 13.321165492025905}],
         'distance': 452,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grolmanstr. 53-54',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520d54521e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4afad90ef964a520001922e3',
        'name': 'BagCo',
        'location': {'address': 'Kantstr. 154',
         'lat': 52.50552219103616,
         'lng': 13.3278123744991,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50552219103616,
           'lng': 13.3278123744991}],
         'distance': 365,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 154', '10623 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4afad90ef964a520001922e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a25300509e2836fcd672422',
        'name': 'C/O Berlin Café',
        'location': {'address': 'Hardenbergstr. 22-24',
         'lat': 52.506694,
         'lng': 13.330645,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506694,
           'lng': 13.330645}],
         'distance': 321,
         'postalCode': '10623',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergstr. 22-24',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a25300509e2836fcd672422-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cb5a07564998cfa2aff0ea2',
        'name': 'Steinecke Brotmeisterei',
        'location': {'address': 'Steinplatz 1',
         'crossStreet': 'Hardenbergstr.',
         'lat': 52.509353956668974,
         'lng': 13.325459241044054,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.509353956668974,
           'lng': 13.325459241044054}],
         'distance': 145,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Steinplatz 1 (Hardenbergstr.)',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cb5a07564998cfa2aff0ea2-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c9a109db8e9224bf16e4a3d',
        'name': 'Café Nero',
        'location': {'address': 'Fasanenstr. 88',
         'lat': 52.510435885220865,
         'lng': 13.33040714263916,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.510435885220865,
           'lng': 13.33040714263916}],
         'distance': 273,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fasanenstr. 88',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c9a109db8e9224bf16e4a3d-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b110852f964a5209b7723e3',
        'name': 'Caras',
        'location': {'address': 'Hardenbergstr. 4-5',
         'crossStreet': 'Knesebeckstr.',
         'lat': 52.51099091056185,
         'lng': 13.322671651840208,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51099091056185,
           'lng': 13.322671651840208}],
         'distance': 402,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergstr. 4-5 (Knesebeckstr.)',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b110852f964a5209b7723e3-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '535d2018498e40a2941c36e2',
        'name': 'Kalyan',
        'location': {'address': 'Fasanenstr. 14',
         'lat': 52.504537069028984,
         'lng': 13.327348113463405,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.504537069028984,
           'lng': 13.327348113463405}],
         'distance': 474,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fasanenstr. 14',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '584457114'}},
       'referralId': 'e-0-535d2018498e40a2941c36e2-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '511e33abe4b030d7320f11c8',
        'name': 'Coffeebar',
        'location': {'address': 'Hardenbergstr. 34',
         'lat': 52.509924176186985,
         'lng': 13.326017181291393,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.509924176186985,
           'lng': 13.326017181291393}],
         'distance': 156,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergstr. 34',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-511e33abe4b030d7320f11c8-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b1cef0ef964a5208f0a24e3',
        'name': 'Balzac Coffee',
        'location': {'address': 'Knesebeckstr. 1-2',
         'lat': 52.510736397013005,
         'lng': 13.32312989669319,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.510736397013005,
           'lng': 13.32312989669319}],
         'distance': 360,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Knesebeckstr. 1-2',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b1cef0ef964a5208f0a24e3-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5826f29da130da30be077c4f',
        'name': "McDonald's",
        'location': {'address': 'Hardenbergplatz 11',
         'lat': 52.5066922382021,
         'lng': 13.333123137894843,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5066922382021,
           'lng': 13.333123137894843}],
         'distance': 453,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergplatz 11',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5826f29da130da30be077c4f-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50a789dce4b0702a820a422a',
        'name': 'Café im Museum für Fotografie',
        'location': {'address': 'Jebensstr. 2',
         'lat': 52.50783148510941,
         'lng': 13.332614296879072,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50783148510941,
           'lng': 13.332614296879072}],
         'distance': 369,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jebensstr. 2', '10623 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50a789dce4b0702a820a422a-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5677f577498edfae549774d2',
        'name': 'McCafé',
        'location': {'address': 'Hardenbergplatz',
         'lat': 52.506898289335886,
         'lng': 13.33262037715007,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506898289335886,
           'lng': 13.33262037715007}],
         'distance': 412,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergplatz', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5677f577498edfae549774d2-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b90c7d3f964a520349733e3',
        'name': 'Caffè Ritazza',
        'location': {'address': 'Hardenbergplatz 13',
         'lat': 52.506594,
         'lng': 13.332736,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506594,
           'lng': 13.332736}],
         'distance': 437,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergplatz 13',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b90c7d3f964a520349733e3-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c405922cc410f470570a961',
        'name': 'Café Zoo',
        'location': {'lat': 52.506697464882286,
         'lng': 13.333063863314939,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506697464882286,
           'lng': 13.333063863314939}],
         'distance': 449,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c405922cc410f470570a961-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda89f964a520b24921e3',
        'name': 'Café Filmbühne am Steinplatz',
        'location': {'address': 'Hardenbergstr. 12',
         'lat': 52.508659927904134,
         'lng': 13.326623038611007,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.508659927904134,
           'lng': 13.326623038611007}],
         'distance': 54,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergstr. 12',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d10d941735',
          'name': 'German Restaurant',
          'pluralName': 'German Restaurants',
          'shortName': 'German',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/german_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '558362624'}},
       'referralId': 'e-0-4adcda89f964a520b24921e3-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bdeac55ffdec928ce35e9a1',
        'name': 'Café Mittelachse',
        'location': {'address': 'Hardenbergstr. 33',
         'crossStreet': 'Hauptgebäude UDK',
         'lat': 52.50900614070499,
         'lng': 13.32679410438423,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50900614070499,
           'lng': 13.32679410438423}],
         'distance': 47,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergstr. 33 (Hauptgebäude UDK)',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d128941735',
          'name': 'Cafeteria',
          'pluralName': 'Cafeterias',
          'shortName': 'Cafeteria',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/education/cafeteria_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bdeac55ffdec928ce35e9a1-21'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e774769b85071a8a66c'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 9,
   'suggestedBounds': {'ne': {'lat': 52.514000004500005,
     'lng': 13.322079858665228},
    'sw': {'lat': 52.5049999955, 'lng': 13.307320141334772}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56714ed9498e49f082a12256',
        'name': 'LimaLima',
        'location': {'address': 'Schlüterstr. 74',
         'crossStreet': 'Goethestr.',
         'lat': 52.50887999999999,
         'lng': 13.318160000000034,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50887999999999,
           'lng': 13.318160000000034}],
         'distance': 244,
         'postalCode': '10625',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schlüterstr. 74 (Goethestr.)',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '149196886'}},
       'referralId': 'e-0-56714ed9498e49f082a12256-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ab67298fd9d732167fae0b0',
        'name': 'Reeham Coffee',
        'location': {'address': 'Schlüterstr. 12',
         'crossStreet': 'Goethestr.',
         'lat': 52.50866787327402,
         'lng': 13.3179269464631,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50866787327402,
           'lng': 13.3179269464631}],
         'distance': 237,
         'postalCode': '10625',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schlüterstr. 12 (Goethestr.)',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ab67298fd9d732167fae0b0-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d6bcac09c533704905132fa',
        'name': 'Cafe Lisboa',
        'location': {'address': 'Goethestr. 34',
         'crossStreet': 'Sesenheimstr.',
         'lat': 52.50892643506776,
         'lng': 13.307877839400101,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50892643506776,
           'lng': 13.307877839400101}],
         'distance': 466,
         'postalCode': '10625',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goethestr. 34 (Sesenheimstr.)',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d6bcac09c533704905132fa-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520d54521e3',
        'name': 'Café Savigny',
        'location': {'address': 'Grolmanstr. 53-54',
         'lat': 52.50734344645246,
         'lng': 13.321165492025905,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50734344645246,
           'lng': 13.321165492025905}],
         'distance': 499,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grolmanstr. 53-54',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520d54521e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bfd72d4b68d0f47eecde857',
        'name': 'Café & Restaurant Istanbul',
        'location': {'address': 'Pestalozzistr. 84',
         'lat': 52.50788342447,
         'lng': 13.3089847556511,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50788342447,
           'lng': 13.3089847556511}],
         'distance': 426,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pestalozzistr. 84',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1c4941735',
          'name': 'Restaurant',
          'pluralName': 'Restaurants',
          'shortName': 'Restaurant',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/default_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bfd72d4b68d0f47eecde857-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d519ffe4015b1f7012f72cf',
        'name': 'Barbar Bar',
        'location': {'address': 'Krumme Str. 41',
         'lat': 52.50759513999999,
         'lng': 13.3095296,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50759513999999,
           'lng': 13.3095296}],
         'distance': 409,
         'postalCode': '10627',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Krumme Str. 41',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d519ffe4015b1f7012f72cf-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d7b76847498a1cdf4516afc',
        'name': 'Leibniz Cafe',
        'location': {'address': 'Leibnizstr. 17',
         'crossStreet': 'Schillerstr.',
         'lat': 52.51140870135995,
         'lng': 13.312071018610842,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51140870135995,
           'lng': 13.312071018610842}],
         'distance': 277,
         'postalCode': '10625',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leibnizstr. 17 (Schillerstr.)',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d7b76847498a1cdf4516afc-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '504b327ae4b0168120d4a008',
        'name': 'Operncafé',
        'location': {'address': 'Bismarckstr. 28',
         'lat': 52.51194493825641,
         'lng': 13.311109038684222,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51194493825641,
           'lng': 13.311109038684222}],
         'distance': 365,
         'postalCode': '10625',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bismarckstr. 28',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-504b327ae4b0168120d4a008-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c053d3473a8c9b6ad2a97e0',
        'name': 'Pan Bistro',
        'location': {'address': 'Leibnitzstr. 101',
         'lat': 52.51292364998421,
         'lng': 13.314603567123413,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51292364998421,
           'lng': 13.314603567123413}],
         'distance': 381,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leibnitzstr. 101', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c053d3473a8c9b6ad2a97e0-8'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e775111134f6bba6f18'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 26,
   'suggestedBounds': {'ne': {'lat': 52.512500004500005,
     'lng': 13.310379606801215},
    'sw': {'lat': 52.5034999955, 'lng': 13.295620393198787}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b9a8bfff964a520debf35e3',
        'name': 'Café au lait - Coffee Food & Drinks',
        'location': {'address': 'Kantstr. 110',
         'crossStreet': 'Wilmersdorfer Str.',
         'lat': 52.50674634495147,
         'lng': 13.305781169860838,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50674634495147,
           'lng': 13.305781169860838}],
         'distance': 234,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 110 (Wilmersdorfer Str.)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '521440049'}},
       'referralId': 'e-0-4b9a8bfff964a520debf35e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e52ae33b0fbfe59e9da18b7',
        'name': 'Insonne',
        'location': {'address': 'Windscheidstr. 22',
         'lat': 52.505605,
         'lng': 13.299947,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.505605,
           'lng': 13.299947}],
         'distance': 337,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Windscheidstr. 22',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e52ae33b0fbfe59e9da18b7-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b25ddb4f964a520037724e3',
        'name': 'Windback Café',
        'location': {'address': 'Windscheidstr. 19',
         'lat': 52.50552644887643,
         'lng': 13.299626310564486,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50552644887643,
           'lng': 13.299626310564486}],
         'distance': 357,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Windscheidstr. 19',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b25ddb4f964a520037724e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50853ac2e4b0e99d0d19a430',
        'name': 'Cafe Wallenstein',
        'location': {'address': 'Schillerstr. 53',
         'crossStreet': 'Kaiser-Friedrich-Str.',
         'lat': 52.50984267461058,
         'lng': 13.301111334350503,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50984267461058,
           'lng': 13.301111334350503}],
         'distance': 241,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schillerstr. 53 (Kaiser-Friedrich-Str.)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50853ac2e4b0e99d0d19a430-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '524ea7e911d27fc1d2963d01',
        'name': 'La Femme',
        'location': {'address': 'Wilmersdorfer Str. 135',
         'lat': 52.51152117044885,
         'lng': 13.305503740823424,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51152117044885,
           'lng': 13.305503740823424}],
         'distance': 427,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 135',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-524ea7e911d27fc1d2963d01-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51faa3b8498e585c00672882',
        'name': 'Orangerie',
        'location': {'address': 'Windscheidstraße 27',
         'lat': 52.506410608802625,
         'lng': 13.299262926509371,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506410608802625,
           'lng': 13.299262926509371}],
         'distance': 308,
         'cc': 'DE',
         'city': 'Berlin-Charlottenburg',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Windscheidstraße 27',
          'Berlin-Charlottenburg',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51faa3b8498e585c00672882-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '504db200e4b05828d1ff6d4d',
        'name': 'Bey Simit Haus',
        'location': {'address': 'Kaiserdamm 66',
         'lat': 52.51121476462036,
         'lng': 13.29840713088643,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51121476462036,
           'lng': 13.29840713088643}],
         'distance': 474,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kaiserdamm 66', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-504db200e4b05828d1ff6d4d-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6db1b8f964a52029872ce3',
        'name': 'Café Extrablatt',
        'location': {'address': 'Wilmersdorfer Str. 46',
         'lat': 52.50940989352259,
         'lng': 13.305863670126424,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50940989352259,
           'lng': 13.305863670126424}],
         'distance': 249,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 46',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6db1b8f964a52029872ce3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d8e06f1d00a6ea8d800af4f',
        'name': 'Kredenz Café Konditorei',
        'location': {'address': 'Kantstr. 81',
         'crossStreet': 'Am Amtsgerichtsplatz',
         'lat': 52.506816687325866,
         'lng': 13.29689034459545,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506816687325866,
           'lng': 13.29689034459545}],
         'distance': 434,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 81 (Am Amtsgerichtsplatz)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d8e06f1d00a6ea8d800af4f-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d6bcac09c533704905132fa',
        'name': 'Cafe Lisboa',
        'location': {'address': 'Goethestr. 34',
         'crossStreet': 'Sesenheimstr.',
         'lat': 52.50892643506776,
         'lng': 13.307877839400101,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50892643506776,
           'lng': 13.307877839400101}],
         'distance': 346,
         'postalCode': '10625',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goethestr. 34 (Sesenheimstr.)',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d6bcac09c533704905132fa-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5be9b29986f4cc002c7190f4',
        'name': 'Black Fox Coffee',
        'location': {'address': 'Wilmersdorfer Str. 46',
         'lat': 52.509788,
         'lng': 13.305691,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.509788,
           'lng': 13.305691}],
         'distance': 269,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 46', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5be9b29986f4cc002c7190f4-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '598e307c9fca56393429b563',
        'name': 'Impala Coffee',
        'location': {'address': 'Wilmersdorfer Str. 67',
         'crossStreet': 'Gervinusstr.',
         'lat': 52.50479923261686,
         'lng': 13.307089044959548,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50479923261686,
           'lng': 13.307089044959548}],
         'distance': 451,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 67 (Gervinusstr.)',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-598e307c9fca56393429b563-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5431361d498e9bcafb48898a',
        'name': 'DOPPIO PAZZO',
        'location': {'address': 'Leonhardstr. 2',
         'lat': 52.504812945292755,
         'lng': 13.298848188957939,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.504812945292755,
           'lng': 13.298848188957939}],
         'distance': 452,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leonhardstr. 2', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5431361d498e9bcafb48898a-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5773f6a7498e6bf43c192d9a',
        'name': 'Tanne B',
        'location': {'lat': 52.506454,
         'lng': 13.308831,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506454,
           'lng': 13.308831}],
         'distance': 430,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5773f6a7498e6bf43c192d9a-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd6ad6a6798ef3b9072658d',
        'name': 'Café September',
        'location': {'address': 'Pestalozzistr. 33',
         'lat': 52.50796138356224,
         'lng': 13.305560795439874,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50796138356224,
           'lng': 13.305560795439874}],
         'distance': 173,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pestalozzistr. 33',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd6ad6a6798ef3b9072658d-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5597b00a498ef8cc24720aae',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Wilmersdorfer str. 112',
         'crossStreet': 'Wilmersdorfer str',
         'lat': 52.50693104397645,
         'lng': 13.306704671733527,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50693104397645,
           'lng': 13.306704671733527}],
         'distance': 277,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer str. 112 (Wilmersdorfer str)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5597b00a498ef8cc24720aae-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d519ffe4015b1f7012f72cf',
        'name': 'Barbar Bar',
        'location': {'address': 'Krumme Str. 41',
         'lat': 52.50759513999999,
         'lng': 13.3095296,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50759513999999,
           'lng': 13.3095296}],
         'distance': 444,
         'postalCode': '10627',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Krumme Str. 41',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d519ffe4015b1f7012f72cf-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f799151e4b09a0a55b56993',
        'name': 'LECKERBACK',
        'location': {'address': 'Kantstr. 102',
         'lat': 52.5070308011854,
         'lng': 13.303174182348014,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5070308011854,
           'lng': 13.303174182348014}],
         'distance': 108,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 102', '10627 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f799151e4b09a0a55b56993-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '597c7a453149b97652468e4a',
        'name': 'Homera coffee & smoothies',
        'location': {'lat': 52.507998,
         'lng': 13.305551,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.507998,
           'lng': 13.305551}],
         'distance': 172,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-597c7a453149b97652468e4a-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dea0e03b0fb8293f7c99641',
        'name': 'Fantasia del Gelato',
        'location': {'address': 'Wilmersdorferstr. 46',
         'lat': 52.5093036905381,
         'lng': 13.304987526006819,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5093036905381,
           'lng': 13.304987526006819}],
         'distance': 197,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorferstr. 46',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dea0e03b0fb8293f7c99641-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59f49bdfdd12f809adcd4383',
        'name': 'Granny Smith',
        'location': {'address': 'Stuttgarter Platz 2',
         'lat': 52.5058354,
         'lng': 13.3057562,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5058354,
           'lng': 13.3057562}],
         'distance': 304,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stuttgarter Platz 2',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '559662116'}},
       'referralId': 'e-0-59f49bdfdd12f809adcd4383-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cc7cb59fa03224b1aa540ef',
        'name': 'Rick’s Café Americain',
        'location': {'address': 'Schillerstr. 40',
         'lat': 52.510032087890586,
         'lng': 13.306248879344746,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.510032087890586,
           'lng': 13.306248879344746}],
         'distance': 315,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schillerstr. 40',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cc7cb59fa03224b1aa540ef-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b02aecbbfc6d0002c0a18f2',
        'name': 'Haus 77 Café',
        'location': {'address': 'Kaiser-Friedrich Str. 77',
         'lat': 52.51159734935449,
         'lng': 13.30174371600151,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51159734935449,
           'lng': 13.30174371600151}],
         'distance': 409,
         'postalCode': '10585',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kaiser-Friedrich Str. 77',
          '10585 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '495103081'}},
       'referralId': 'e-0-5b02aecbbfc6d0002c0a18f2-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d945ca7078ef04dc81e2878',
        'name': 'La Strada',
        'location': {'address': 'Bismarckstr. 69',
         'lat': 52.510821138848726,
         'lng': 13.298515677452087,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.510821138848726,
           'lng': 13.298515677452087}],
         'distance': 436,
         'postalCode': '10627',
         'cc': 'DE',
         'neighborhood': 'Sophie-Charlotte-Platz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bismarckstr. 69',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d945ca7078ef04dc81e2878-23'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e787694ba313bda5d14'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 18,
   'suggestedBounds': {'ne': {'lat': 52.5073000045, 'lng': 13.31597873384487},
    'sw': {'lat': 52.4982999955, 'lng': 13.30122126615513}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6d7863f964a52095762ce3',
        'name': 'Frau Behrens Torten',
        'location': {'address': 'Wilmersdorfer Str. 96-97',
         'crossStreet': 'Sybelstr.',
         'lat': 52.5016526514001,
         'lng': 13.30766311815256,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5016526514001,
           'lng': 13.30766311815256}],
         'distance': 142,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 96-97 (Sybelstr.)',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6d7863f964a52095762ce3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b9a8bfff964a520debf35e3',
        'name': 'Café au lait - Coffee Food & Drinks',
        'location': {'address': 'Kantstr. 110',
         'crossStreet': 'Wilmersdorfer Str.',
         'lat': 52.50674634495147,
         'lng': 13.305781169860838,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50674634495147,
           'lng': 13.305781169860838}],
         'distance': 479,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 110 (Wilmersdorfer Str.)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '521440049'}},
       'referralId': 'e-0-4b9a8bfff964a520debf35e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '598e307c9fca56393429b563',
        'name': 'Impala Coffee',
        'location': {'address': 'Wilmersdorfer Str. 67',
         'crossStreet': 'Gervinusstr.',
         'lat': 52.50479923261686,
         'lng': 13.307089044959548,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50479923261686,
           'lng': 13.307089044959548}],
         'distance': 244,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 67 (Gervinusstr.)',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-598e307c9fca56393429b563-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51bc675d498e44f450175b79',
        'name': 'Café Maître Münch',
        'location': {'address': 'Giesebrechtstr. 16',
         'lat': 52.502282,
         'lng': 13.309506,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.502282,
           'lng': 13.309506}],
         'distance': 84,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Giesebrechtstr. 16',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51bc675d498e44f450175b79-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5773f6a7498e6bf43c192d9a',
        'name': 'Tanne B',
        'location': {'lat': 52.506454,
         'lng': 13.308831,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506454,
           'lng': 13.308831}],
         'distance': 407,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5773f6a7498e6bf43c192d9a-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56b8e7b6498e53579eaf155c',
        'name': 'Kame',
        'location': {'address': 'Leibnizstr. 45',
         'lat': 52.50385597300255,
         'lng': 13.313506884965676,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50385597300255,
           'lng': 13.313506884965676}],
         'distance': 352,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leibnizstr. 45', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56b8e7b6498e53579eaf155c-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b61c1fff964a520e1202ae3',
        'name': 'Starbucks',
        'location': {'address': 'Kurfürstendamm 61',
         'lat': 52.50080082395324,
         'lng': 13.31296553979055,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50080082395324,
           'lng': 13.31296553979055}],
         'distance': 370,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 61',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b61c1fff964a520e1202ae3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5cb21a65ea1e44002bb95c5c',
        'name': 'Mado',
        'location': {'address': 'Kurfürstendamm 175',
         'lat': 52.500023,
         'lng': 13.310055,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500023,
           'lng': 13.310055}],
         'distance': 324,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 175', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5cb21a65ea1e44002bb95c5c-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '586679cc45c3ed1e7d4c5723',
        'name': 'Zeit für Brot',
        'location': {'address': 'Xantener Str. 1',
         'crossStreet': 'Konstanzer Str.',
         'lat': 52.4991316980378,
         'lng': 13.312422366163116,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4991316980378,
           'lng': 13.312422366163116}],
         'distance': 483,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Xantener Str. 1 (Konstanzer Str.)',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-586679cc45c3ed1e7d4c5723-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520ae4521e3',
        'name': "Julep's New York Bar & Restaurant",
        'location': {'address': 'Giesebrechtstr. 3',
         'lat': 52.50259744652773,
         'lng': 13.308968793192404,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50259744652773,
           'lng': 13.308968793192404}],
         'distance': 33,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Giesebrechtstr. 3',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520ae4521e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd5ca986f64952139b06fec',
        'name': 'Graffiti',
        'location': {'address': 'Kurfürstendamm 69',
         'crossStreet': 'Adenauerplatz',
         'lat': 52.50037261721211,
         'lng': 13.307023400117904,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50037261721211,
           'lng': 13.307023400117904}],
         'distance': 290,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 69 (Adenauerplatz)',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd5ca986f64952139b06fec-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5597b00a498ef8cc24720aae',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Wilmersdorfer str. 112',
         'crossStreet': 'Wilmersdorfer str',
         'lat': 52.50693104397645,
         'lng': 13.306704671733527,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50693104397645,
           'lng': 13.306704671733527}],
         'distance': 477,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer str. 112 (Wilmersdorfer str)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5597b00a498ef8cc24720aae-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e75fade7d8b9176034b0a5a',
        'name': 'Croissanterie',
        'location': {'address': 'Giesebrechtstr. 22',
         'crossStreet': 'Wilmersdorfer Str.',
         'lat': 52.503265633642165,
         'lng': 13.308391571044922,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503265633642165,
           'lng': 13.308391571044922}],
         'distance': 53,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Giesebrechtstr. 22 (Wilmersdorfer Str.)',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e75fade7d8b9176034b0a5a-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ead82ed8b8181aef81f368b',
        'name': 'Confiserie Reichert',
        'location': {'address': 'Giesebrechtstraße 22, 10629 Berlin',
         'lat': 52.50284493957226,
         'lng': 13.308095686956444,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50284493957226,
           'lng': 13.308095686956444}],
         'distance': 34,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Giesebrechtstraße 22, 10629 Berlin',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ead82ed8b8181aef81f368b-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51292cb8e4b096ae492eacf7',
        'name': 'Shahrazar Cafe',
        'location': {'lat': 52.50211054365673,
         'lng': 13.304198562533157,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50211054365673,
           'lng': 13.304198562533157}],
         'distance': 307,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51292cb8e4b096ae492eacf7-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5aad58ab78782c0c8ad731f6',
        'name': 'Kant café',
        'location': {'address': 'Walter-Benjamin-Platz 8',
         'lat': 52.50161,
         'lng': 13.31364,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50161,
           'lng': 13.31364}],
         'distance': 366,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Walter-Benjamin-Platz 8',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5aad58ab78782c0c8ad731f6-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59f49bdfdd12f809adcd4383',
        'name': 'Granny Smith',
        'location': {'address': 'Stuttgarter Platz 2',
         'lat': 52.5058354,
         'lng': 13.3057562,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5058354,
           'lng': 13.3057562}],
         'distance': 388,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stuttgarter Platz 2',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '559662116'}},
       'referralId': 'e-0-59f49bdfdd12f809adcd4383-16'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e78c699df34c85c03b4'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Hohenzollernplatz',
   'headerFullLocation': 'Hohenzollernplatz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 10,
   'suggestedBounds': {'ne': {'lat': 52.5012000045, 'lng': 13.321177710140578},
    'sw': {'lat': 52.492199995499995, 'lng': 13.306422289859423}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '586679cc45c3ed1e7d4c5723',
        'name': 'Zeit für Brot',
        'location': {'address': 'Xantener Str. 1',
         'crossStreet': 'Konstanzer Str.',
         'lat': 52.4991316980378,
         'lng': 13.312422366163116,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4991316980378,
           'lng': 13.312422366163116}],
         'distance': 286,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Xantener Str. 1 (Konstanzer Str.)',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-586679cc45c3ed1e7d4c5723-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e2533318877099df4bc1d1d',
        'name': 'BäckerMann',
        'location': {'address': 'Pariser Str. 20',
         'lat': 52.49837514519333,
         'lng': 13.317846621563133,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49837514519333,
           'lng': 13.317846621563133}],
         'distance': 331,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pariser Str. 20',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e2533318877099df4bc1d1d-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b61c1fff964a520e1202ae3',
        'name': 'Starbucks',
        'location': {'address': 'Kurfürstendamm 61',
         'lat': 52.50080082395324,
         'lng': 13.31296553979055,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50080082395324,
           'lng': 13.31296553979055}],
         'distance': 459,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 61',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b61c1fff964a520e1202ae3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ccd2e3bba79a1cd031640cb',
        'name': "Backshop e' Cafe",
        'location': {'address': 'Olivaer Platz 3',
         'lat': 52.499173355795214,
         'lng': 13.313899261469013,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.499173355795214,
           'lng': 13.313899261469013}],
         'distance': 275,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Olivaer Platz 3',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ccd2e3bba79a1cd031640cb-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5cb21a65ea1e44002bb95c5c',
        'name': 'Mado',
        'location': {'address': 'Kurfürstendamm 175',
         'lat': 52.500023,
         'lng': 13.310055,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500023,
           'lng': 13.310055}],
         'distance': 448,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 175', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5cb21a65ea1e44002bb95c5c-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a520964521e3',
        'name': 'Café Menta',
        'location': {'address': 'Emser Straße 24',
         'lat': 52.497221811306815,
         'lng': 13.32019640214895,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497221811306815,
           'lng': 13.32019640214895}],
         'distance': 437,
         'postalCode': '10719',
         'cc': 'DE',
         'neighborhood': 'Hohenzollernplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Emser Straße 24',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d116941735',
          'name': 'Bar',
          'pluralName': 'Bars',
          'shortName': 'Bar',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/nightlife/pub_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a520964521e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd9c7a9e914a593cbdf57fa',
        'name': 'Cafe Solo',
        'location': {'lat': 52.498118,
         'lng': 13.318405,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498118,
           'lng': 13.318405}],
         'distance': 349,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd9c7a9e914a593cbdf57fa-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c432ed5ff711b8df88a1405',
        'name': 'Checkers',
        'location': {'address': 'Olivaer Platz 15',
         'lat': 52.49983698016564,
         'lng': 13.314357404240928,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49983698016564,
           'lng': 13.314357404240928}],
         'distance': 351,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Olivaer Platz 15',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c432ed5ff711b8df88a1405-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fdafb73e4b015c11dabcd68',
        'name': 'Chocolatte&latte',
        'location': {'lat': 52.497140901680126,
         'lng': 13.307588244233079,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497140901680126,
           'lng': 13.307588244233079}],
         'distance': 423,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fdafb73e4b015c11dabcd68-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5377990e11d245aa7aa3f529',
        'name': 'Cafe Sidney',
        'location': {'address': 'Pariser Str. 19',
         'lat': 52.49826331071216,
         'lng': 13.318327168973749,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49826331071216,
           'lng': 13.318327168973749}],
         'distance': 352,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pariser Str. 19',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1c4941735',
          'name': 'Restaurant',
          'pluralName': 'Restaurants',
          'shortName': 'Restaurant',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/default_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5377990e11d245aa7aa3f529-9'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7833f6626c6896ff03'},
  'response': {'headerLocation': 'Halensee',
   'headerFullLocation': 'Halensee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.4984000045, 'lng': 13.310477240366636},
    'sw': {'lat': 52.489399995499994, 'lng': 13.295722759633366}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d36d13b38f23704abcf28b0',
        'name': 'Caffee Credo',
        'location': {'address': 'Westfälische Straße 27',
         'lat': 52.495578,
         'lng': 13.29837,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.495578,
           'lng': 13.29837}],
         'distance': 371,
         'postalCode': '10709',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Westfälische Straße 27',
          '10709 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d36d13b38f23704abcf28b0-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d2b4ded8292236a9b0533bb',
        'name': 'Markt Pur',
        'location': {'address': 'Westfälische Str.27',
         'lat': 52.49536213600223,
         'lng': 13.298664438282565,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49536213600223,
           'lng': 13.298664438282565}],
         'distance': 341,
         'postalCode': '10709',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Westfälische Str.27',
          '10709 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1f5941735',
          'name': 'Gourmet Shop',
          'pluralName': 'Gourmet Shops',
          'shortName': 'Gourmet',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/food_gourmet_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d2b4ded8292236a9b0533bb-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d39c1f781258cfa9da69e5f',
        'name': 'Café MetroPolen',
        'location': {'address': 'Westfälische Str. 32',
         'lat': 52.49580680858954,
         'lng': 13.297238945960999,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49580680858954,
           'lng': 13.297238945960999}],
         'distance': 450,
         'postalCode': '10709',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Westfälische Str. 32',
          '10709 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d39c1f781258cfa9da69e5f-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fdafb73e4b015c11dabcd68',
        'name': 'Chocolatte&latte',
        'location': {'lat': 52.497140901680126,
         'lng': 13.307588244233079,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497140901680126,
           'lng': 13.307588244233079}],
         'distance': 471,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fdafb73e4b015c11dabcd68-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e32d76252b151d568717bf5',
        'name': 'Café und Bäcker Wieslau',
        'location': {'address': 'Westfälische Str. 62',
         'lat': 52.49582393683851,
         'lng': 13.297023628518081,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49582393683851,
           'lng': 13.297023628518081}],
         'distance': 464,
         'postalCode': '10709',
         'cc': 'DE',
         'neighborhood': 'Halensee, Berlin',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Westfälische Str. 62',
          '10709 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e32d76252b151d568717bf5-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e79726940047d4c8b8f'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Joachim-Friedrich-Straße',
   'headerFullLocation': 'Joachim-Friedrich-Straße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.5026000045, 'lng': 13.297877945056594},
    'sw': {'lat': 52.4935999955, 'lng': 13.283122054943405}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51c18a22498e901b58eaa6ae',
        'name': 'Cups',
        'location': {'address': 'Kurfürstendamm 114',
         'lat': 52.4973884452663,
         'lng': 13.291307350385743,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4973884452663,
           'lng': 13.291307350385743}],
         'distance': 96,
         'postalCode': '10711',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 114',
          '10711 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51c18a22498e901b58eaa6ae-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b25f73ff964a520cb7724e3',
        'name': 'Eis Café Eisgrün',
        'location': {'address': 'Kurfürstendamm 114-115',
         'lat': 52.49732423389471,
         'lng': 13.290991723679316,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49732423389471,
           'lng': 13.290991723679316}],
         'distance': 92,
         'postalCode': '10711',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 114-115',
          '10711 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b25f73ff964a520cb7724e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54ff4527498ef17172aa8219',
        'name': 'Der Bäcker Feihl',
        'location': {'address': 'Kurfürstendamm 142',
         'lat': 52.49777855630754,
         'lng': 13.296793857869432,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49777855630754,
           'lng': 13.296793857869432}],
         'distance': 428,
         'postalCode': '10709',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 142',
          '10709 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54ff4527498ef17172aa8219-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e79a614367fd9cf95ee'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Bundesplatz',
   'headerFullLocation': 'Bundesplatz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.489600004500005,
     'lng': 13.320675764438297},
    'sw': {'lat': 52.4805999955, 'lng': 13.305924235561703}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7ad91d7d1d494328c3'},
  'response': {'headerLocation': 'Bundesplatz',
   'headerFullLocation': 'Bundesplatz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.4869000045, 'lng': 13.336275311749912},
    'sw': {'lat': 52.477899995499996, 'lng': 13.32152468825009}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58778cd87b43b469071b897f',
        'name': 'Café Wolkenstein',
        'location': {'address': 'Bundesplatz 1',
         'crossStreet': 'Mainzer Straße',
         'lat': 52.480149,
         'lng': 13.327856,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.480149,
           'lng': 13.327856}],
         'distance': 260,
         'postalCode': '10715',
         'cc': 'DE',
         'neighborhood': 'Bundesplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bundesplatz 1 (Mainzer Straße)',
          '10715 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58778cd87b43b469071b897f-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fd72d35e4b0ac0b1e89e0ec',
        'name': 'Café am Volkspark',
        'location': {'address': 'Livländische Straße 2',
         'crossStreet': 'Am Volkspark',
         'lat': 52.482662612451534,
         'lng': 13.325965404510498,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.482662612451534,
           'lng': 13.325965404510498}],
         'distance': 201,
         'postalCode': '10715',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Livländische Straße 2 (Am Volkspark)',
          '10715 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fd72d35e4b0ac0b1e89e0ec-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56c039eecd10d8d45dcbd6b8',
        'name': 'Coffee & More',
        'location': {'address': 'Bundesplatz 9',
         'lat': 52.479430491787724,
         'lng': 13.326768066091592,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.479430491787724,
           'lng': 13.326768066091592}],
         'distance': 360,
         'postalCode': '10715',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bundesplatz 9', '10715 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56c039eecd10d8d45dcbd6b8-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56c1f5b2cd10a333b5eb6c00',
        'name': 'Le Petit Four',
        'location': {'address': 'Weimarische Str. 6 a',
         'lat': 52.47943408187744,
         'lng': 13.326693509782508,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47943408187744,
           'lng': 13.326693509782508}],
         'distance': 362,
         'postalCode': '10715',
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Weimarische Str. 6 a', '10715', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56c1f5b2cd10a333b5eb6c00-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5058600be4b07b064bd294af',
        'name': 'Zona Bar',
        'location': {'address': 'Bundesallee 45',
         'lat': 52.48609161376953,
         'lng': 13.33072280883789,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48609161376953,
           'lng': 13.33072280883789}],
         'distance': 429,
         'postalCode': '10715',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bundesallee 45',
          '10715 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5058600be4b07b064bd294af-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7a5111134f6bba7a3a'},
  'response': {'headerLocation': 'Hohenzollernplatz',
   'headerFullLocation': 'Hohenzollernplatz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 9,
   'suggestedBounds': {'ne': {'lat': 52.4953000045, 'lng': 13.334876720350096},
    'sw': {'lat': 52.4862999955, 'lng': 13.320123279649906}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bbdc6e6a8cf76b0891eb2fd',
        'name': 'BioBackHaus',
        'location': {'address': 'Nassauische Str. 16a',
         'lat': 52.49091896268291,
         'lng': 13.326505487682153,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49091896268291,
           'lng': 13.326505487682153}],
         'distance': 68,
         'postalCode': '10717',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Nassauische Str. 16a',
          '10717 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bbdc6e6a8cf76b0891eb2fd-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc25100ae60966750a7774c',
        'name': 'ADAC Geschäftsstelle',
        'location': {'address': 'Bundesallee 29-30',
         'lat': 52.49126,
         'lng': 13.33041,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49126,
           'lng': 13.33041}],
         'distance': 203,
         'postalCode': '10717',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bundesallee 29-30',
          '10717 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1ff941735',
          'name': 'Miscellaneous Shop',
          'pluralName': 'Miscellaneous Shops',
          'shortName': 'Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/default_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc25100ae60966750a7774c-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5226ef4211d2409098d50feb',
        'name': 'Happiness-Heart CAFE',
        'location': {'address': 'Güntzelstr. 22',
         'crossStreet': 'Holsteinische Str.',
         'lat': 52.49130580181417,
         'lng': 13.324930078719861,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49130580181417,
           'lng': 13.324930078719861}],
         'distance': 183,
         'postalCode': '10717',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Güntzelstr. 22 (Holsteinische Str.)',
          '10717 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5226ef4211d2409098d50feb-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e95a7d5e5fa7b6a9f2e635c',
        'name': 'Cafè Engelchen',
        'location': {'address': 'Prager Platz 1-3',
         'lat': 52.49342523963437,
         'lng': 13.333295894872716,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49342523963437,
           'lng': 13.333295894872716}],
         'distance': 489,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 1-3',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e95a7d5e5fa7b6a9f2e635c-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cebdf398ef78cfa5936af9b',
        'name': 'Zimt & Zucker Wohncafé',
        'location': {'address': 'Trautenaustr. 12',
         'lat': 52.49167528232415,
         'lng': 13.326703504486604,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49167528232415,
           'lng': 13.326703504486604}],
         'distance': 111,
         'postalCode': '10717',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Trautenaustr. 12',
          '10717 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cebdf398ef78cfa5936af9b-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c4992136594be9ac9ef3f25',
        'name': 'Meyerbeer Coffee',
        'location': {'address': 'Prager Platz 3',
         'lat': 52.4932233557136,
         'lng': 13.332913278714306,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4932233557136,
           'lng': 13.332913278714306}],
         'distance': 455,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 3',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c4992136594be9ac9ef3f25-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5f0877f68d2f57429b77f3d9',
        'name': 'Kalyan Royal',
        'location': {'address': 'Bundesallee 187',
         'lat': 52.48924239999999,
         'lng': 13.3314024,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48924239999999,
           'lng': 13.3314024}],
         'distance': 316,
         'postalCode': '10717',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bundesallee 187',
          '10717 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '584108107'}},
       'referralId': 'e-0-5f0877f68d2f57429b77f3d9-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c9da944ca44236abe392399',
        'name': 'BagCo',
        'location': {'address': 'Prager Platz 6',
         'lat': 52.49310927745698,
         'lng': 13.333305459002371,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49310927745698,
           'lng': 13.333305459002371}],
         'distance': 470,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 6',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c9da944ca44236abe392399-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56756022498ef5898e7e9a06',
        'name': 'Cafe Bernstein',
        'location': {'lat': 52.494966,
         'lng': 13.326838,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494966,
           'lng': 13.326838}],
         'distance': 465,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56756022498ef5898e7e9a06-8'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7adfad1e14df20a536'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Wilmersdorf',
   'headerFullLocation': 'Wilmersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 13,
   'suggestedBounds': {'ne': {'lat': 52.503300004500005,
     'lng': 13.333078062521864},
    'sw': {'lat': 52.4942999955, 'lng': 13.318321937478135}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520ac4521e3',
        'name': 'Hamlet',
        'location': {'address': 'Ludwigkirchstr. 6',
         'crossStreet': 'Uhlandstr.',
         'lat': 52.49787182666313,
         'lng': 13.323996370727691,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49787182666313,
           'lng': 13.323996370727691}],
         'distance': 154,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ludwigkirchstr. 6 (Uhlandstr.)',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520ac4521e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc9b8040687ef3bf052dacc',
        'name': 'Berliner Kaffeerösterei',
        'location': {'address': 'Uhlandstr. 173',
         'lat': 52.5014929063876,
         'lng': 13.325070026890394,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5014929063876,
           'lng': 13.325070026890394}],
         'distance': 302,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Uhlandstr. 173',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '83899149'}},
       'referralId': 'e-0-4bc9b8040687ef3bf052dacc-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda78f964a5205c4621e3',
        'name': 'Café Restaurant "Wintergarten"',
        'location': {'address': 'Fasanenstr. 23',
         'lat': 52.502011360604314,
         'lng': 13.327076329626266,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.502011360604314,
           'lng': 13.327076329626266}],
         'distance': 369,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fasanenstr. 23',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda78f964a5205c4621e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b5b6465f964a52054fa28e3',
        'name': 'Reinhards am Kurfürstendamm',
        'location': {'address': 'Kurfürstendamm 27',
         'crossStreet': 'Fasanenstr.',
         'lat': 52.503060794146364,
         'lng': 13.327363151050251,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503060794146364,
           'lng': 13.327363151050251}],
         'distance': 487,
         'postalCode': '10719',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg, Berlin',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 27 (Fasanenstr.)',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '127459492'}},
       'referralId': 'e-0-4b5b6465f964a52054fa28e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '593547cf4b78c519c0bc049b',
        'name': 'Cafe Lebensart',
        'location': {'address': 'Uhlandstrasse 47',
         'lat': 52.497742,
         'lng': 13.324108,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497742,
           'lng': 13.324108}],
         'distance': 159,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Uhlandstrasse 47',
          '10777 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-593547cf4b78c519c0bc049b-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b22840ef964a520244824e3',
        'name': 'Weyers',
        'location': {'address': 'Pariser Str. 16',
         'lat': 52.49747787191282,
         'lng': 13.322697758946683,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49747787191282,
           'lng': 13.322697758946683}],
         'distance': 251,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pariser Str. 16',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b22840ef964a520244824e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '508d2ed5e4b0d26217a55276',
        'name': 'Nicos süßes Atelier',
        'location': {'address': 'Fasanenstr. 42',
         'lat': 52.497713827458966,
         'lng': 13.326676648580573,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497713827458966,
           'lng': 13.326676648580573}],
         'distance': 137,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fasanenstr. 42',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1d0941735',
          'name': 'Dessert Shop',
          'pluralName': 'Dessert Shops',
          'shortName': 'Desserts',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/dessert_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-508d2ed5e4b0d26217a55276-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6299f869a1c9b6b6f338a4',
        'name': 'Ottenthal Weinhandlung & Kaffeehaus',
        'location': {'address': 'Ludwigkirchstr. 9',
         'lat': 52.497871,
         'lng': 13.322834,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497871,
           'lng': 13.322834}],
         'distance': 220,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ludwigkirchstr. 9',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6299f869a1c9b6b6f338a4-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '575ac589498e736f4a65807f',
        'name': 'Blueberry Coffees',
        'location': {'address': 'Uhlandstrasse 167',
         'lat': 52.50057359277325,
         'lng': 13.324996259916714,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50057359277325,
           'lng': 13.324996259916714}],
         'distance': 203,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Uhlandstrasse 167',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-575ac589498e736f4a65807f-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f76b126e4b0c7b6e12e80e3',
        'name': 'Café Miro',
        'location': {'lat': 52.50016610114841,
         'lng': 13.3250062097778,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50016610114841,
           'lng': 13.3250062097778}],
         'distance': 159,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f76b126e4b0c7b6e12e80e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56756022498ef5898e7e9a06',
        'name': 'Cafe Bernstein',
        'location': {'lat': 52.494966,
         'lng': 13.326838,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494966,
           'lng': 13.326838}],
         'distance': 433,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56756022498ef5898e7e9a06-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58838e8ce9dad12feb286e46',
        'name': 'Nier',
        'location': {'address': 'Grolmanstraße 39',
         'crossStreet': 'Kurfürstendamm',
         'lat': 52.503135017119625,
         'lng': 13.324946165084839,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503135017119625,
           'lng': 13.324946165084839}],
         'distance': 485,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grolmanstraße 39 (Kurfürstendamm)',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '396248036'}},
       'referralId': 'e-0-58838e8ce9dad12feb286e46-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd9c7a9e914a593cbdf57fa',
        'name': 'Cafe Solo',
        'location': {'lat': 52.498118,
         'lng': 13.318405,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498118,
           'lng': 13.318405}],
         'distance': 500,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd9c7a9e914a593cbdf57fa-12'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7ba5421e17cce94307'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 15,
   'suggestedBounds': {'ne': {'lat': 52.502000004500005,
     'lng': 13.350077844375932},
    'sw': {'lat': 52.4929999955, 'lng': 13.33532215562407}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '588cc52851666a083e4cb174',
        'name': 'Café Komine',
        'location': {'address': 'Welserstr. 13-15',
         'crossStreet': 'Geisbeegerstr.',
         'lat': 52.497845,
         'lng': 13.341739,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497845,
           'lng': 13.341739}],
         'distance': 75,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Welserstr. 13-15 (Geisbeegerstr.)',
          '10777 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-588cc52851666a083e4cb174-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '517b9648e4b0a7bf5beceb71',
        'name': 'Café Kalwil',
        'location': {'address': 'Motzstr. 30',
         'lat': 52.49768525570815,
         'lng': 13.347861483690487,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49768525570815,
           'lng': 13.347861483690487}],
         'distance': 350,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Motzstr. 30', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-517b9648e4b0a7bf5beceb71-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5022b1f3067d766e9b14d461',
        'name': 'Viktoria Eis',
        'location': {'address': 'Motzstr. 58',
         'lat': 52.49526361774536,
         'lng': 13.340322763045137,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49526361774536,
           'lng': 13.340322763045137}],
         'distance': 296,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Motzstr. 58', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5022b1f3067d766e9b14d461-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5637a615498ea2e482d00fab',
        'name': 'Brezel Berlin Café & mehr',
        'location': {'address': 'Kalckreuthstr. 16',
         'lat': 52.49922,
         'lng': 13.348063,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49922,
           'lng': 13.348063}],
         'distance': 410,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kalckreuthstr. 16',
          '10777 Berlin',
          'Deutschland']},
        'categories': [{'id': '5665c7b9498e7d8a4f2c0f06',
          'name': 'Corporate Coffee Shop',
          'pluralName': 'Corporate Coffee Shops',
          'shortName': 'Corporate Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5637a615498ea2e482d00fab-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ce3c5d2748d6ea86897cc50',
        'name': 'Salumeria da Nino',
        'location': {'address': 'Geisbergstr. 14',
         'lat': 52.49754897544177,
         'lng': 13.340185058201893,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49754897544177,
           'lng': 13.340185058201893}],
         'distance': 170,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Geisbergstr. 14',
          '10777 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ce3c5d2748d6ea86897cc50-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4db2df6d93a017099db60fdb',
        'name': 'Romeo und Romeo',
        'location': {'address': 'Motzstr. 20',
         'lat': 52.498299277987925,
         'lng': 13.34950196589679,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498299277987925,
           'lng': 13.34950196589679}],
         'distance': 469,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Motzstr. 20', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4db2df6d93a017099db60fdb-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '544634b0498e1428320a401b',
        'name': 'Caféhaus Grenander',
        'location': {'address': 'Wittenbergplatz 3a',
         'crossStreet': 'Bayreuther Str.',
         'lat': 52.50088835218635,
         'lng': 13.343110084533691,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50088835218635,
           'lng': 13.343110084533691}],
         'distance': 378,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wittenbergplatz 3a (Bayreuther Str.)',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-544634b0498e1428320a401b-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '536df58e498ebd8c93958712',
        'name': 'La Piadina',
        'location': {'address': 'Augsburger Str. 6',
         'lat': 52.50053799625231,
         'lng': 13.33779800760201,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50053799625231,
           'lng': 13.33779800760201}],
         'distance': 474,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Augsburger Str. 6',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-536df58e498ebd8c93958712-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5dfbb6b52f4b3400086a0c34',
        'name': 'Five Elephant Kadewe',
        'location': {'address': 'Kadewe',
         'lat': 52.501544,
         'lng': 13.341231,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501544,
           'lng': 13.341231}],
         'distance': 461,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kadewe', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5dfbb6b52f4b3400086a0c34-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f50c6d9e4b062d9da38e7b8',
        'name': 'Cafe Sawanna',
        'location': {'address': 'Welserstr. 25',
         'lat': 52.49881782682959,
         'lng': 13.342051478342471,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49881782682959,
           'lng': 13.342051478342471}],
         'distance': 153,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Welserstr. 25', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f50c6d9e4b062d9da38e7b8-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51389a65e4b077bc6418098f',
        'name': 'Café Sinn & Sinnlichkeit',
        'location': {'address': 'Augsburger Straße 2',
         'lat': 52.50015276272254,
         'lng': 13.33860249401298,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50015276272254,
           'lng': 13.33860249401298}],
         'distance': 405,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Augsburger Straße 2',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '68522661'}},
       'referralId': 'e-0-51389a65e4b077bc6418098f-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e3c3241d22d102e853089a0',
        'name': 'Cafe Beauty',
        'location': {'address': 'Hohenstaufenstr. 33',
         'lat': 52.494249,
         'lng': 13.341121,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494249,
           'lng': 13.341121}],
         'distance': 377,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hohenstaufenstr. 33',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e3c3241d22d102e853089a0-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c7e24c510916dcb1b5e2b96',
        'name': 'Galleria illy',
        'location': {'address': 'Tauentzienstr. 21-24',
         'lat': 52.50171127185375,
         'lng': 13.341071605682373,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50171127185375,
           'lng': 13.341071605682373}],
         'distance': 481,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 21-24',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c7e24c510916dcb1b5e2b96-12'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7bd64a734725268e3a'},
  'response': {'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 6,
   'suggestedBounds': {'ne': {'lat': 52.4966000045, 'lng': 13.346876938409991},
    'sw': {'lat': 52.4875999955, 'lng': 13.332123061590007}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4efc8117c512b6718a8f6894',
        'name': 'Patisserie & Café Lézard',
        'location': {'address': 'Bamberger Str. 49',
         'lat': 52.494440481821265,
         'lng': 13.337250797374928,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494440481821265,
           'lng': 13.337250797374928}],
         'distance': 301,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bamberger Str. 49',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '359552987'}},
       'referralId': 'e-0-4efc8117c512b6718a8f6894-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5022b1f3067d766e9b14d461',
        'name': 'Viktoria Eis',
        'location': {'address': 'Motzstr. 58',
         'lat': 52.49526361774536,
         'lng': 13.340322763045137,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49526361774536,
           'lng': 13.340322763045137}],
         'distance': 356,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Motzstr. 58', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5022b1f3067d766e9b14d461-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e95a7d5e5fa7b6a9f2e635c',
        'name': 'Cafè Engelchen',
        'location': {'address': 'Prager Platz 1-3',
         'lat': 52.49342523963437,
         'lng': 13.333295894872716,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49342523963437,
           'lng': 13.333295894872716}],
         'distance': 445,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 1-3',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e95a7d5e5fa7b6a9f2e635c-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c4992136594be9ac9ef3f25',
        'name': 'Meyerbeer Coffee',
        'location': {'address': 'Prager Platz 3',
         'lat': 52.4932233557136,
         'lng': 13.332913278714306,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4932233557136,
           'lng': 13.332913278714306}],
         'distance': 463,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 3',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c4992136594be9ac9ef3f25-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e3c3241d22d102e853089a0',
        'name': 'Cafe Beauty',
        'location': {'address': 'Hohenstaufenstr. 33',
         'lat': 52.494249,
         'lng': 13.341121,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494249,
           'lng': 13.341121}],
         'distance': 263,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hohenstaufenstr. 33',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e3c3241d22d102e853089a0-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c9da944ca44236abe392399',
        'name': 'BagCo',
        'location': {'address': 'Prager Platz 6',
         'lat': 52.49310927745698,
         'lng': 13.333305459002371,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49310927745698,
           'lng': 13.333305459002371}],
         'distance': 434,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 6',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c9da944ca44236abe392399-5'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7c368fe8722514d0d2'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 22,
   'suggestedBounds': {'ne': {'lat': 52.4981000045, 'lng': 13.360277190038305},
    'sw': {'lat': 52.4890999955, 'lng': 13.345522809961695}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50ceda77e4b00957d84ec7f6',
        'name': 'Mattea',
        'location': {'lat': 52.493433878360776,
         'lng': 13.35195400313665,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493433878360776,
           'lng': 13.35195400313665}],
         'distance': 66,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50ceda77e4b00957d84ec7f6-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '585a65bd0b7e934bd2588e27',
        'name': 'Le Bretagne',
        'location': {'address': 'Karl-Schrader-Str. 1',
         'lat': 52.49195687156021,
         'lng': 13.351252581972107,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49195687156021,
           'lng': 13.351252581972107}],
         'distance': 214,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Schrader-Str. 1',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-585a65bd0b7e934bd2588e27-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c230c92502b9521be1e6e21',
        'name': 'Baltas Coffee Shop',
        'location': {'address': 'Goltzstr. 17',
         'lat': 52.493455880441246,
         'lng': 13.353658037022804,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493455880441246,
           'lng': 13.353658037022804}],
         'distance': 53,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 17', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c230c92502b9521be1e6e21-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59072f4aa2a6ce23bba9dea7',
        'name': 'The Visit',
        'location': {'address': 'Goltzstr. 39',
         'lat': 52.492878765499334,
         'lng': 13.353553659131794,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.492878765499334,
           'lng': 13.353553659131794}],
         'distance': 91,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 39', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '448592562'}},
       'referralId': 'e-0-59072f4aa2a6ce23bba9dea7-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b8d7710f964a52049fd32e3',
        'name': 'Rote Beete',
        'location': {'address': 'Gleditschstr. 71',
         'lat': 52.490436580690485,
         'lng': 13.354926819716542,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490436580690485,
           'lng': 13.354926819716542}],
         'distance': 377,
         'postalCode': '10781',
         'cc': 'DE',
         'neighborhood': 'Akazien',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleditschstr. 71',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b8d7710f964a52049fd32e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b5c6778f964a5203d2e29e3',
        'name': 'Mamsell',
        'location': {'address': 'Goltzstr. 48',
         'lat': 52.49058031823461,
         'lng': 13.35323294088859,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49058031823461,
           'lng': 13.35323294088859}],
         'distance': 336,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 48', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b5c6778f964a5203d2e29e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59073961cad1b6166cb4dd30',
        'name': 'Kiez Eis',
        'location': {'address': 'Winterfeldtstr. 46',
         'lat': 52.496941782707246,
         'lng': 13.353624026622834,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496941782707246,
           'lng': 13.353624026622834}],
         'distance': 375,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winterfeldtstr. 46',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59073961cad1b6166cb4dd30-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda87f964a520354921e3',
        'name': 'April',
        'location': {'address': 'Winterfeldtstr. 56',
         'lat': 52.496746037196246,
         'lng': 13.351683774104766,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496746037196246,
           'lng': 13.351683774104766}],
         'distance': 359,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winterfeldtstr. 56',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda87f964a520354921e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b5b30d8f964a520f7e928e3',
        'name': 'Golzo',
        'location': {'address': 'Goltzstr. 21',
         'lat': 52.49401218168419,
         'lng': 13.353776112787617,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49401218168419,
           'lng': 13.353776112787617}],
         'distance': 75,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 21', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b5b30d8f964a520f7e928e3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a520024621e3',
        'name': 'Gottlob',
        'location': {'address': 'Akazienstr. 17',
         'lat': 52.489293253107576,
         'lng': 13.353526673712864,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.489293253107576,
           'lng': 13.353526673712864}],
         'distance': 481,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 17',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a520024621e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ca1f82b542b224b84ca12a0',
        'name': 'Emma & Paul',
        'location': {'address': 'Gleditschstr. 47',
         'lat': 52.49244332970314,
         'lng': 13.355542042488707,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49244332970314,
           'lng': 13.355542042488707}],
         'distance': 220,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleditschstr. 47',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ca1f82b542b224b84ca12a0-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cab53d136fa6dcbbf0cd878',
        'name': 'Miss Honeypenny',
        'location': {'address': 'Winterfeldtstr. 44',
         'lat': 52.49697620415233,
         'lng': 13.35396177364013,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49697620415233,
           'lng': 13.35396177364013}],
         'distance': 382,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winterfeldtstr. 44',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cab53d136fa6dcbbf0cd878-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520d74521e3',
        'name': 'Café Berio',
        'location': {'address': 'Maaßenstr. 7',
         'lat': 52.4979623176797,
         'lng': 13.354301917346982,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4979623176797,
           'lng': 13.354301917346982}],
         'distance': 494,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maaßenstr. 7', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520d74521e3-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52a6fc7311d28f4dc542efb8',
        'name': 'hub:raum Café',
        'location': {'address': 'Winterfeldtstr. 21',
         'lat': 52.49626151548128,
         'lng': 13.358191173441384,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49626151548128,
           'lng': 13.358191173441384}],
         'distance': 465,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winterfeldtstr. 21', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52a6fc7311d28f4dc542efb8-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '528751dc498eda5ad5a82a5e',
        'name': 'Meyan',
        'location': {'address': 'Goltzstr. 36',
         'lat': 52.49377950974741,
         'lng': 13.353748841881423,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49377950974741,
           'lng': 13.353748841881423}],
         'distance': 60,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 36', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1c0941735',
          'name': 'Mediterranean Restaurant',
          'pluralName': 'Mediterranean Restaurants',
          'shortName': 'Mediterranean',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/mediterranean_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-528751dc498eda5ad5a82a5e-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a520864521e3',
        'name': 'Café M',
        'location': {'address': 'Goltzstr. 33',
         'lat': 52.494173228755756,
         'lng': 13.353852357022236,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494173228755756,
           'lng': 13.353852357022236}],
         'distance': 90,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 33', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a520864521e3-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f816e96e4b06d09fa1cb8ab',
        'name': 'Frau Bäckerin',
        'location': {'address': 'Eisenacher Str. 40',
         'lat': 52.48992539481446,
         'lng': 13.349057749358904,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48992539481446,
           'lng': 13.349057749358904}],
         'distance': 484,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eisenacher Str. 40',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f816e96e4b06d09fa1cb8ab-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fe60f77e4b09198fdc2dcc7',
        'name': "L'épicerie",
        'location': {'address': 'Kyffhäuserstr. 21',
         'crossStreet': 'Frankenstr.',
         'lat': 52.493504791452764,
         'lng': 13.351910185783122,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493504791452764,
           'lng': 13.351910185783122}],
         'distance': 67,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kyffhäuserstr. 21 (Frankenstr.)',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fe60f77e4b09198fdc2dcc7-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c0a278e340720a1bbf38593',
        'name': 'Phoenix Lounge',
        'location': {'address': 'Kyffhäuserstr. 14',
         'crossStreet': 'Barbarossastraße',
         'lat': 52.49224332256961,
         'lng': 13.351337803024036,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49224332256961,
           'lng': 13.351337803024036}],
         'distance': 184,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kyffhäuserstr. 14 (Barbarossastraße)',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c0a278e340720a1bbf38593-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e4e2657d22daf51d2633076',
        'name': 'Kiezoase Schöneberg',
        'location': {'address': 'Barbarossastr. 65',
         'lat': 52.492031194150705,
         'lng': 13.352766036987305,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.492031194150705,
           'lng': 13.352766036987305}],
         'distance': 174,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Barbarossastr. 65',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e4e2657d22daf51d2633076-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4db45c11f7b121c29f4a045a',
        'name': 'Eckstein',
        'location': {'address': 'Maaßenstr. 14',
         'lat': 52.49706879230931,
         'lng': 13.354356153810752,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49706879230931,
           'lng': 13.354356153810752}],
         'distance': 398,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maaßenstr. 14', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4db45c11f7b121c29f4a045a-20'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7c6e16037dc720949f'},
  'response': {'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 8,
   'suggestedBounds': {'ne': {'lat': 52.500900004500004,
     'lng': 13.36977765980395},
    'sw': {'lat': 52.4918999955, 'lng': 13.355022340196049}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a7d71eee679bc0a6b22b0d1',
        'name': 'Erntezeit',
        'location': {'address': 'Pallasstr. 35',
         'lat': 52.49416,
         'lng': 13.360325,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49416,
           'lng': 13.360325}],
         'distance': 286,
         'cc': 'DE',
         'neighborhood': 'Akazienkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pallasstr. 35', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a7d71eee679bc0a6b22b0d1-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b1165c01953f3002c2b457f',
        'name': 'Zimt & Zucker',
        'location': {'address': 'Potsdamer Straße 103',
         'crossStreet': 'Potsdammer Straße',
         'lat': 52.50050298889769,
         'lng': 13.363508755230798,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50050298889769,
           'lng': 13.363508755230798}],
         'distance': 462,
         'postalCode': '10785',
         'cc': 'DE',
         'neighborhood': 'Viktoriakiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Potsdamer Straße 103 (Potsdammer Straße)',
          '10785 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b1165c01953f3002c2b457f-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a520e34521e3',
        'name': 'Savarin',
        'location': {'address': 'Kulmer Straße 17',
         'lat': 52.492616,
         'lng': 13.365025,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.492616,
           'lng': 13.365025}],
         'distance': 457,
         'postalCode': '10783',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kulmer Straße 17',
          '10783 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a520e34521e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d8b80c97139b1f7e26fe1d4',
        'name': 'DiVan',
        'location': {'address': 'Potsdamer Str. 146',
         'lat': 52.49730893243956,
         'lng': 13.36188257135696,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49730893243956,
           'lng': 13.36188257135696}],
         'distance': 107,
         'postalCode': '10783',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Potsdamer Str. 146',
          '10783 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d8b80c97139b1f7e26fe1d4-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52a6fc7311d28f4dc542efb8',
        'name': 'hub:raum Café',
        'location': {'address': 'Winterfeldtstr. 21',
         'lat': 52.49626151548128,
         'lng': 13.358191173441384,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49626151548128,
           'lng': 13.358191173441384}],
         'distance': 285,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winterfeldtstr. 21', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52a6fc7311d28f4dc542efb8-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cb32e50ef1b37040f805000',
        'name': 'Queen of Muffins',
        'location': {'address': 'Potsdamer Str. 112',
         'lat': 52.500809414757654,
         'lng': 13.36355496304227,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500809414757654,
           'lng': 13.36355496304227}],
         'distance': 497,
         'postalCode': '10785',
         'cc': 'DE',
         'neighborhood': 'Tiergarten',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Potsdamer Str. 112',
          '10785 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cb32e50ef1b37040f805000-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5963d18869e77b4a966250f6',
        'name': 'Mansy',
        'location': {'address': 'Potsdamer Straße 9',
         'lat': 52.500794,
         'lng': 13.363695,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500794,
           'lng': 13.363695}],
         'distance': 496,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Potsdamer Straße 9', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5963d18869e77b4a966250f6-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '533026a111d2895fbfb5952b',
        'name': 'Route 99',
        'location': {'address': 'Potsdamer Str. 99',
         'lat': 52.50077620421332,
         'lng': 13.36403270293739,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50077620421332,
           'lng': 13.36403270293739}],
         'distance': 499,
         'postalCode': '10785',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Potsdamer Str. 99',
          '10785 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-533026a111d2895fbfb5952b-7'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7d35436f34a079287a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tiergarten',
   'headerFullLocation': 'Tiergarten, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5118000045, 'lng': 13.371679489272289},
    'sw': {'lat': 52.5027999955, 'lng': 13.356920510727711}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7d92e219640deed3ac'},
  'response': {'headerLocation': 'Tiergarten',
   'headerFullLocation': 'Tiergarten, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.512300004500005,
     'lng': 13.351279573221026},
    'sw': {'lat': 52.5032999955, 'lng': 13.336520426778973}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda73f964a520584521e3',
        'name': 'Café am Neuen See',
        'location': {'address': 'Lichtensteinallee 2',
         'lat': 52.510497175705275,
         'lng': 13.344290959220633,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.510497175705275,
           'lng': 13.344290959220633}],
         'distance': 301,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lichtensteinallee 2',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda73f964a520584521e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6e4029c5243704e07e2aeb',
        'name': 'Cafe Minouche',
        'location': {'address': 'Budapester Str. 6',
         'lat': 52.50627057250485,
         'lng': 13.34391583126817,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50627057250485,
           'lng': 13.34391583126817}],
         'distance': 170,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Str. 6',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6e4029c5243704e07e2aeb-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d2c4629467d6ea8fb01e795',
        'name': 'Café Bäckerei',
        'location': {'address': 'Kurfürstenstr. 101-104',
         'lat': 52.504942835653786,
         'lng': 13.342004196570217,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.504942835653786,
           'lng': 13.342004196570217}],
         'distance': 343,
         'postalCode': '10787',
         'cc': 'DE',
         'neighborhood': 'Tiergarten',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstenstr. 101-104',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d2c4629467d6ea8fb01e795-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d9f1443fca1b60c233cb650',
        'name': 'Berliner Bakery',
        'location': {'address': 'Ansbacher Str. 14',
         'lat': 52.50345486397204,
         'lng': 13.342675458762491,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50345486397204,
           'lng': 13.342675458762491}],
         'distance': 490,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ansbacher Str. 14',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d9f1443fca1b60c233cb650-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4de881a1fa76fd1168a27fd3',
        'name': 'L.A. Café',
        'location': {'address': 'Budapester Str. 2',
         'lat': 52.50705334397416,
         'lng': 13.34587812423706,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50705334397416,
           'lng': 13.34587812423706}],
         'distance': 157,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Str. 2',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d143941735',
          'name': 'Breakfast Spot',
          'pluralName': 'Breakfast Spots',
          'shortName': 'Breakfast',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/breakfast_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4de881a1fa76fd1168a27fd3-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7eaa0cc20f986ec4af'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Hardenbergstraße',
   'headerFullLocation': 'Hardenbergstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 24,
   'suggestedBounds': {'ne': {'lat': 52.5062000045, 'lng': 13.34507854921528},
    'sw': {'lat': 52.4971999955, 'lng': 13.33032145078472}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c84d8add34ca14367cd4180',
        'name': 'Salut Mediterranean Food & Catering',
        'location': {'address': 'Augsburger Str 29',
         'lat': 52.50170706883203,
         'lng': 13.334932294487809,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50170706883203,
           'lng': 13.334932294487809}],
         'distance': 187,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Augsburger Str 29',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '57036891'}},
       'referralId': 'e-0-4c84d8add34ca14367cd4180-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b891d45f964a520871d32e3',
        'name': 'Lenôtre Paris',
        'location': {'address': 'Tauentzienstr. 21-24',
         'crossStreet': 'KaDeWe, 6. Etage',
         'lat': 52.50189121509479,
         'lng': 13.341057484929928,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50189121509479,
           'lng': 13.341057484929928}],
         'distance': 228,
         'postalCode': '10785',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 21-24 (KaDeWe, 6. Etage)',
          '10785 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b891d45f964a520871d32e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d80c438e6d7721e15061ec7',
        'name': 'KaDeWe LeBuffet Wintergarten',
        'location': {'address': 'Tauentzienstr. 21-24',
         'lat': 52.50206250058134,
         'lng': 13.341339210424607,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50206250058134,
           'lng': 13.341339210424607}],
         'distance': 249,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 21-24',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '362193159'}},
       'referralId': 'e-0-4d80c438e6d7721e15061ec7-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5acb3eccf79faa0a6bbb2109',
        'name': 'Hasty Pastry',
        'location': {'address': 'Bayreuther Strasse 6',
         'lat': 52.503141,
         'lng': 13.344363,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503141,
           'lng': 13.344363}],
         'distance': 479,
         'cc': 'DE',
         'city': 'Charlottenburg',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bayreuther Strasse 6',
          'Charlottenburg',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5acb3eccf79faa0a6bbb2109-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '536df58e498ebd8c93958712',
        'name': 'La Piadina',
        'location': {'address': 'Augsburger Str. 6',
         'lat': 52.50053799625231,
         'lng': 13.33779800760201,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50053799625231,
           'lng': 13.33779800760201}],
         'distance': 129,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Augsburger Str. 6',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-536df58e498ebd8c93958712-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5dfbb6b52f4b3400086a0c34',
        'name': 'Five Elephant Kadewe',
        'location': {'address': 'Kadewe',
         'lat': 52.501544,
         'lng': 13.341231,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501544,
           'lng': 13.341231}],
         'distance': 239,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kadewe', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5dfbb6b52f4b3400086a0c34-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '544634b0498e1428320a401b',
        'name': 'Caféhaus Grenander',
        'location': {'address': 'Wittenbergplatz 3a',
         'crossStreet': 'Bayreuther Str.',
         'lat': 52.50088835218635,
         'lng': 13.343110084533691,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50088835218635,
           'lng': 13.343110084533691}],
         'distance': 377,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wittenbergplatz 3a (Bayreuther Str.)',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-544634b0498e1428320a401b-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ce3c5d2748d6ea86897cc50',
        'name': 'Salumeria da Nino',
        'location': {'address': 'Geisbergstr. 14',
         'lat': 52.49754897544177,
         'lng': 13.340185058201893,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49754897544177,
           'lng': 13.340185058201893}],
         'distance': 491,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Geisbergstr. 14',
          '10777 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ce3c5d2748d6ea86897cc50-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d2c4629467d6ea8fb01e795',
        'name': 'Café Bäckerei',
        'location': {'address': 'Kurfürstenstr. 101-104',
         'lat': 52.504942835653786,
         'lng': 13.342004196570217,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.504942835653786,
           'lng': 13.342004196570217}],
         'distance': 464,
         'postalCode': '10787',
         'cc': 'DE',
         'neighborhood': 'Tiergarten',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstenstr. 101-104',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d2c4629467d6ea8fb01e795-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51389a65e4b077bc6418098f',
        'name': 'Café Sinn & Sinnlichkeit',
        'location': {'address': 'Augsburger Straße 2',
         'lat': 52.50015276272254,
         'lng': 13.33860249401298,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50015276272254,
           'lng': 13.33860249401298}],
         'distance': 182,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Augsburger Straße 2',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '68522661'}},
       'referralId': 'e-0-51389a65e4b077bc6418098f-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c387b0c93db0f472f972192',
        'name': "Cafe Tiffany's",
        'location': {'address': 'Tauentzienstr. 9-12',
         'lat': 52.50433847579813,
         'lng': 13.338165435993476,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50433847579813,
           'lng': 13.338165435993476}],
         'distance': 295,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 9-12',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c387b0c93db0f472f972192-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d9f1443fca1b60c233cb650',
        'name': 'Berliner Bakery',
        'location': {'address': 'Ansbacher Str. 14',
         'lat': 52.50345486397204,
         'lng': 13.342675458762491,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50345486397204,
           'lng': 13.342675458762491}],
         'distance': 389,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ansbacher Str. 14',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d9f1443fca1b60c233cb650-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f93be3be4b04b1ee265326a',
        'name': 'MyCafé',
        'location': {'address': 'Nürnberger Str. 17',
         'lat': 52.50227517426624,
         'lng': 13.338497319576218,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50227517426624,
           'lng': 13.338497319576218}],
         'distance': 83,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Nürnberger Str. 17',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f93be3be4b04b1ee265326a-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bf7d5685ec320a1e39087d3',
        'name': 'Alt Berlin',
        'location': {'lat': 52.50312168107187,
         'lng': 13.336990476755659,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50312168107187,
           'lng': 13.336990476755659}],
         'distance': 165,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['10789 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bf7d5685ec320a1e39087d3-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d972d2097d06ea8b07d140b',
        'name': 'La Petite France',
        'location': {'address': 'Nürnberger str',
         'crossStreet': 'Augsburger Str',
         'lat': 52.500671240053144,
         'lng': 13.337396384549132,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500671240053144,
           'lng': 13.337396384549132}],
         'distance': 116,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Nürnberger str (Augsburger Str)',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d972d2097d06ea8b07d140b-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '534d0610498ee01b6f1437f6',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Budapester Str. 38-50',
         'lat': 52.505287,
         'lng': 13.337607,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.505287,
           'lng': 13.337607}],
         'distance': 399,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Str. 38-50',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-534d0610498ee01b6f1437f6-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c7e24c510916dcb1b5e2b96',
        'name': 'Galleria illy',
        'location': {'address': 'Tauentzienstr. 21-24',
         'lat': 52.50171127185375,
         'lng': 13.341071605682373,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50171127185375,
           'lng': 13.341071605682373}],
         'distance': 228,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 21-24',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c7e24c510916dcb1b5e2b96-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f50c6d9e4b062d9da38e7b8',
        'name': 'Cafe Sawanna',
        'location': {'address': 'Welserstr. 25',
         'lat': 52.49881782682959,
         'lng': 13.342051478342471,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49881782682959,
           'lng': 13.342051478342471}],
         'distance': 435,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Welserstr. 25', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f50c6d9e4b062d9da38e7b8-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d1b3cc61683a14335717b51',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Tauentzienstr. 19/19a',
         'lat': 52.50272081879772,
         'lng': 13.339690633608484,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50272081879772,
           'lng': 13.339690633608484}],
         'distance': 176,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 19/19a',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '555633080'}},
       'referralId': 'e-0-4d1b3cc61683a14335717b51-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc00bb6f7b115b875d735e7',
        'name': 'Leo Coffee Bar',
        'location': {'address': 'Tauentzienstr. 9-12',
         'lat': 52.50465014492073,
         'lng': 13.337552547454832,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50465014492073,
           'lng': 13.337552547454832}],
         'distance': 328,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 9-12',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc00bb6f7b115b875d735e7-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58ee135954073d2dc7ed227d',
        'name': 'Spreegold',
        'location': {'address': 'Budapester Str. 50',
         'lat': 52.50557999999999,
         'lng': 13.3356,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50557999999999,
           'lng': 13.3356}],
         'distance': 454,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Charlottenburg',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Str. 50',
          '10787 Charlottenburg',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58ee135954073d2dc7ed227d-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53722c52498e418e820b51bd',
        'name': 'SUPER concept space',
        'location': {'address': 'Budapester Str. 50',
         'lat': 52.505726383226126,
         'lng': 13.335011326506718,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.505726383226126,
           'lng': 13.335011326506718}],
         'distance': 483,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Str. 50',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1f8941735',
          'name': 'Furniture / Home Store',
          'pluralName': 'Furniture / Home Stores',
          'shortName': 'Furniture / Home',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/furniture_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '194245277'}},
       'referralId': 'e-0-53722c52498e418e820b51bd-21'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7ee998a41dc43aa060'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Akazienkiez',
   'headerFullLocation': 'Akazienkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 16,
   'suggestedBounds': {'ne': {'lat': 52.4918000045, 'lng': 13.358276133348701},
    'sw': {'lat': 52.482799995499995, 'lng': 13.343523866651298}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cea64a39f776ea817816822',
        'name': 'Café Carlos Tapas',
        'location': {'address': 'Eisenacher Str. 69',
         'lat': 52.48608,
         'lng': 13.351446,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48608,
           'lng': 13.351446}],
         'distance': 140,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eisenacher Str. 69',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cea64a39f776ea817816822-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a520024621e3',
        'name': 'Gottlob',
        'location': {'address': 'Akazienstr. 17',
         'lat': 52.489293253107576,
         'lng': 13.353526673712864,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.489293253107576,
           'lng': 13.353526673712864}],
         'distance': 284,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 17',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a520024621e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '580c8f7138fac6ce8121fa9e',
        'name': 'Hope Superfood Deli',
        'location': {'address': 'Akazienstr. 28',
         'lat': 52.4867403226751,
         'lng': 13.355223246054647,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4867403226751,
           'lng': 13.355223246054647}],
         'distance': 299,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 28',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-580c8f7138fac6ce8121fa9e-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b5c6778f964a5203d2e29e3',
        'name': 'Mamsell',
        'location': {'address': 'Goltzstr. 48',
         'lat': 52.49058031823461,
         'lng': 13.35323294088859,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49058031823461,
           'lng': 13.35323294088859}],
         'distance': 397,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 48', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b5c6778f964a5203d2e29e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b8d7710f964a52049fd32e3',
        'name': 'Rote Beete',
        'location': {'address': 'Gleditschstr. 71',
         'lat': 52.490436580690485,
         'lng': 13.354926819716542,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490436580690485,
           'lng': 13.354926819716542}],
         'distance': 443,
         'postalCode': '10781',
         'cc': 'DE',
         'neighborhood': 'Akazien',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleditschstr. 71',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b8d7710f964a52049fd32e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5549c575498e4f3ae5d7f78f',
        'name': 'Croissanterie',
        'location': {'address': 'Hauptstraße 131',
         'crossStreet': 'Albertstraße',
         'lat': 52.48462598080004,
         'lng': 13.353219892465056,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48462598080004,
           'lng': 13.353219892465056}],
         'distance': 336,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hauptstraße 131 (Albertstraße)',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5549c575498e4f3ae5d7f78f-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b09797ef964a520da1723e3',
        'name': 'Café BilderBuch',
        'location': {'address': 'Akazienstr. 28',
         'lat': 52.486686482218715,
         'lng': 13.35498772781911,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486686482218715,
           'lng': 13.35498772781911}],
         'distance': 285,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 28',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b09797ef964a520da1723e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b506d57f964a520fe2227e3',
        'name': 'DoubleEye',
        'location': {'address': 'Akazienstr. 22',
         'lat': 52.48799274353971,
         'lng': 13.354272878353157,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48799274353971,
           'lng': 13.354272878353157}],
         'distance': 241,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 22',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b506d57f964a520fe2227e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c8fa281a8de224b62433101',
        'name': 'Esmeraldas Inka-Café',
        'location': {'address': 'Belziger Str. 44',
         'lat': 52.486215,
         'lng': 13.35045,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486215,
           'lng': 13.35045}],
         'distance': 124,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Belziger Str. 44', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c8fa281a8de224b62433101-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b657accf964a520ebf12ae3',
        'name': 'Café Bar Oro Nero',
        'location': {'address': 'Akazienstr. 10',
         'lat': 52.48818554090425,
         'lng': 13.354190672374807,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48818554090425,
           'lng': 13.354190672374807}],
         'distance': 243,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 10',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d110941735',
          'name': 'Italian Restaurant',
          'pluralName': 'Italian Restaurants',
          'shortName': 'Italian',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/italian_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b657accf964a520ebf12ae3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f816e96e4b06d09fa1cb8ab',
        'name': 'Frau Bäckerin',
        'location': {'address': 'Eisenacher Str. 40',
         'lat': 52.48992539481446,
         'lng': 13.349057749358904,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48992539481446,
           'lng': 13.349057749358904}],
         'distance': 317,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eisenacher Str. 40',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f816e96e4b06d09fa1cb8ab-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4db2ae016a23c31a02f08015',
        'name': "salt 'n' sweet",
        'location': {'address': 'Eisenacher Str. 87 - 88',
         'lat': 52.49027777149155,
         'lng': 13.346473562142535,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49027777149155,
           'lng': 13.346473562142535}],
         'distance': 447,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eisenacher Str. 87 - 88',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4db2ae016a23c31a02f08015-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f8011c8e4b088077e63d861',
        'name': 'Makrönchen-Manufaktur',
        'location': {'address': 'Apostel-Paulus-Str. 4',
         'lat': 52.488281387710344,
         'lng': 13.349912166595459,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.488281387710344,
           'lng': 13.349912166595459}],
         'distance': 128,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Apostel-Paulus-Str. 4',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f8011c8e4b088077e63d861-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eff3d1961af974bcd71f6ac',
        'name': "Billy's • Café & Bar",
        'location': {'address': 'Grunewaldstr. 29',
         'lat': 52.48937892512784,
         'lng': 13.348002433776855,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48937892512784,
           'lng': 13.348002433776855}],
         'distance': 303,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunewaldstr. 29',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eff3d1961af974bcd71f6ac-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5be04268fb8e59002c11df4a',
        'name': 'goodies',
        'location': {'lat': 52.486731,
         'lng': 13.355166,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486731,
           'lng': 13.355166}],
         'distance': 296,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5be04268fb8e59002c11df4a-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b51f7ba0a08ab002cd2472a',
        'name': 'Goodies Healthy Food',
        'location': {'lat': 52.486558,
         'lng': 13.355429,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486558,
           'lng': 13.355429}],
         'distance': 317,
         'cc': 'DE',
         'neighborhood': 'Akazienkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b51f7ba0a08ab002cd2472a-15'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7fc699df34c85c1cca'},
  'response': {'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.488300004500005,
     'lng': 13.348675546468241},
    'sw': {'lat': 52.4792999955, 'lng': 13.33392445353176}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d7f9eac2ff9b60c4080c147',
        'name': '"Vis à Vis" Cafè Bar Lounge',
        'location': {'address': 'Meraner Straße 20 b',
         'crossStreet': 'Badenschestraße',
         'lat': 52.485782298884715,
         'lng': 13.338377473327904,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.485782298884715,
           'lng': 13.338377473327904}],
         'distance': 296,
         'postalCode': '10825',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Meraner Straße 20 b (Badenschestraße)',
          '10825 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '67017792'}},
       'referralId': 'e-0-4d7f9eac2ff9b60c4080c147-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e9e9fff30f8fb6775ffcfb4',
        'name': 'Cafe Geschmacklos',
        'location': {'address': 'Badensche Str. 50',
         'lat': 52.48567188174349,
         'lng': 13.337519534861807,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48567188174349,
           'lng': 13.337519534861807}],
         'distance': 330,
         'postalCode': '10825',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Badensche Str. 50',
          '10825 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e9e9fff30f8fb6775ffcfb4-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56c61087498e971bc42454e5',
        'name': 'Café Lavie',
        'location': {'address': 'Wartburgstr. 25',
         'lat': 52.486127900975056,
         'lng': 13.338629627719024,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486127900975056,
           'lng': 13.338629627719024}],
         'distance': 316,
         'postalCode': '10825',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wartburgstr. 25',
          '10825 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56c61087498e971bc42454e5-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b65571cf964a520dced2ae3',
        'name': 'Tomasa',
        'location': {'address': 'Salzburger Str. 19',
         'crossStreet': 'Wartburgstr.',
         'lat': 52.48684400494932,
         'lng': 13.342351470348627,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48684400494932,
           'lng': 13.342351470348627}],
         'distance': 346,
         'postalCode': '10825',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Salzburger Str. 19 (Wartburgstr.)',
          '10825 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b65571cf964a520dced2ae3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c39c5bf3849c92884c3c1b1',
        'name': 'Parkcafé Pusteblume',
        'location': {'address': 'Durlacher Str. 2',
         'lat': 52.48031704883435,
         'lng': 13.33662400967685,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48031704883435,
           'lng': 13.33662400967685}],
         'distance': 500,
         'postalCode': '10715',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Durlacher Str. 2',
          '10715 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c39c5bf3849c92884c3c1b1-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7fcce9aa16743cece7'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 12,
   'suggestedBounds': {'ne': {'lat': 52.488300004500005,
     'lng': 13.361675546468241},
    'sw': {'lat': 52.4792999955, 'lng': 13.34692445353176}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5549c575498e4f3ae5d7f78f',
        'name': 'Croissanterie',
        'location': {'address': 'Hauptstraße 131',
         'crossStreet': 'Albertstraße',
         'lat': 52.48462598080004,
         'lng': 13.353219892465056,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48462598080004,
           'lng': 13.353219892465056}],
         'distance': 117,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hauptstraße 131 (Albertstraße)',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5549c575498e4f3ae5d7f78f-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cea64a39f776ea817816822',
        'name': 'Café Carlos Tapas',
        'location': {'address': 'Eisenacher Str. 69',
         'lat': 52.48608,
         'lng': 13.351446,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48608,
           'lng': 13.351446}],
         'distance': 319,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eisenacher Str. 69',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cea64a39f776ea817816822-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '579b7d3b498ea8f02d59f2f3',
        'name': 'Café de Enrico',
        'location': {'address': 'Fritz-Reuter-Straße 13',
         'crossStreet': 'Gustav-Muller-Straße',
         'lat': 52.481013876466925,
         'lng': 13.349787701000947,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.481013876466925,
           'lng': 13.349787701000947}],
         'distance': 435,
         'postalCode': '10827',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fritz-Reuter-Straße 13 (Gustav-Muller-Straße)',
          '10827 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-579b7d3b498ea8f02d59f2f3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '580c8f7138fac6ce8121fa9e',
        'name': 'Hope Superfood Deli',
        'location': {'address': 'Akazienstr. 28',
         'lat': 52.4867403226751,
         'lng': 13.355223246054647,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4867403226751,
           'lng': 13.355223246054647}],
         'distance': 333,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 28',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-580c8f7138fac6ce8121fa9e-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d9a9d1673df8cfa5495e3ec',
        'name': 'Mokalola',
        'location': {'address': 'Leberstr. 21',
         'lat': 52.48432707145924,
         'lng': 13.361495269419237,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48432707145924,
           'lng': 13.361495269419237}],
         'distance': 491,
         'postalCode': '10829',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leberstr. 21', '10829 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d9a9d1673df8cfa5495e3ec-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b09797ef964a520da1723e3',
        'name': 'Café BilderBuch',
        'location': {'address': 'Akazienstr. 28',
         'lat': 52.486686482218715,
         'lng': 13.35498772781911,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486686482218715,
           'lng': 13.35498772781911}],
         'distance': 324,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 28',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b09797ef964a520da1723e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b506d57f964a520fe2227e3',
        'name': 'DoubleEye',
        'location': {'address': 'Akazienstr. 22',
         'lat': 52.48799274353971,
         'lng': 13.354272878353157,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48799274353971,
           'lng': 13.354272878353157}],
         'distance': 466,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 22',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b506d57f964a520fe2227e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c8fa281a8de224b62433101',
        'name': 'Esmeraldas Inka-Café',
        'location': {'address': 'Belziger Str. 44',
         'lat': 52.486215,
         'lng': 13.35045,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486215,
           'lng': 13.35045}],
         'distance': 374,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Belziger Str. 44', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c8fa281a8de224b62433101-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b657accf964a520ebf12ae3',
        'name': 'Café Bar Oro Nero',
        'location': {'address': 'Akazienstr. 10',
         'lat': 52.48818554090425,
         'lng': 13.354190672374807,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48818554090425,
           'lng': 13.354190672374807}],
         'distance': 488,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 10',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d110941735',
          'name': 'Italian Restaurant',
          'pluralName': 'Italian Restaurants',
          'shortName': 'Italian',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/italian_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b657accf964a520ebf12ae3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55a8dfb6498e196699c8f4c0',
        'name': 'Café im Wasserturm',
        'location': {'address': 'Torgauer Str. 12-15',
         'lat': 52.481219,
         'lng': 13.356603,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.481219,
           'lng': 13.356603}],
         'distance': 326,
         'postalCode': '10829',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torgauer Str. 12-15',
          '10829 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55a8dfb6498e196699c8f4c0-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b51f7ba0a08ab002cd2472a',
        'name': 'Goodies Healthy Food',
        'location': {'lat': 52.486558,
         'lng': 13.355429,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486558,
           'lng': 13.355429}],
         'distance': 316,
         'cc': 'DE',
         'neighborhood': 'Akazienkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b51f7ba0a08ab002cd2472a-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5be04268fb8e59002c11df4a',
        'name': 'goodies',
        'location': {'lat': 52.486731,
         'lng': 13.355166,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486731,
           'lng': 13.355166}],
         'distance': 331,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5be04268fb8e59002c11df4a-11'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e7fa0021654ca519569'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.480600004500005,
     'lng': 13.368074255756751},
    'sw': {'lat': 52.4715999955, 'lng': 13.353325744243248}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '579781c2498e58b79df5b1c0',
        'name': 'PapalaCup',
        'location': {'address': 'Gotenstr. 55',
         'crossStreet': 'Torgauer Str.',
         'lat': 52.47977811367951,
         'lng': 13.360209012031753,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47977811367951,
           'lng': 13.360209012031753}],
         'distance': 410,
         'postalCode': '10829',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gotenstr. 55 (Torgauer Str.)',
          '10829 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-579781c2498e58b79df5b1c0-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5208c81311d2c865ecd2e6fc',
        'name': 'Café Peppe',
        'location': {'address': 'Torgauer Str. 2',
         'lat': 52.478996954810036,
         'lng': 13.362743854522705,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.478996954810036,
           'lng': 13.362743854522705}],
         'distance': 350,
         'postalCode': '10829',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torgauer Str. 2',
          '10829 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5208c81311d2c865ecd2e6fc-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e80e6b2a1698429017a'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Urban',
   'headerFullLocation': 'Urban, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 18,
   'suggestedBounds': {'ne': {'lat': 52.497100004500005,
     'lng': 13.404877022283628},
    'sw': {'lat': 52.4880999955, 'lng': 13.390122977716373}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eea5e33a17ce863c4d4c3d3',
        'name': 'Chapter One',
        'location': {'address': 'Mittenwalder Str. 30',
         'lat': 52.48976163897703,
         'lng': 13.395976072085904,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48976163897703,
           'lng': 13.395976072085904}],
         'distance': 332,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mittenwalder Str. 30',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eea5e33a17ce863c4d4c3d3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51a0921e498e4b1069594cae',
        'name': 'Cafe Strauss',
        'location': {'address': 'Bergmannstr. 42',
         'lat': 52.48885463809621,
         'lng': 13.400800812420202,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48885463809621,
           'lng': 13.400800812420202}],
         'distance': 473,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstr. 42',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51a0921e498e4b1069594cae-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5718d8e6498e8b6c093b4287',
        'name': 'Soviet Gallery & Cafe',
        'location': {'address': 'Solmsstr. 35',
         'lat': 52.49070358276367,
         'lng': 13.392443656921387,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49070358276367,
           'lng': 13.392443656921387}],
         'distance': 402,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Solmsstr. 35', '10961 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '199780496'}},
       'referralId': 'e-0-5718d8e6498e8b6c093b4287-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b1cf22bf964a520a40a24e3',
        'name': 'Molinari & Ko',
        'location': {'address': 'Riemannstr. 13',
         'crossStreet': 'Solmstr.',
         'lat': 52.490348,
         'lng': 13.392124,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490348,
           'lng': 13.392124}],
         'distance': 442,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Riemannstr. 13 (Solmstr.)',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b1cf22bf964a520a40a24e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adf5c28f964a520dd7921e3',
        'name': 'Cuccuma',
        'location': {'address': 'Zossener Str. 34',
         'lat': 52.490682082409705,
         'lng': 13.39419235367524,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490682082409705,
           'lng': 13.39419235367524}],
         'distance': 309,
         'postalCode': '10961',
         'cc': 'DE',
         'neighborhood': 'Kreuzberg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Zossener Str. 34',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adf5c28f964a520dd7921e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b51d2e2f964a520de5627e3',
        'name': 'Mokkabar',
        'location': {'address': 'Gneisenaustr. 93',
         'lat': 52.491718570995225,
         'lng': 13.393796613809625,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.491718570995225,
           'lng': 13.393796613809625}],
         'distance': 269,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gneisenaustr. 93',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b51d2e2f964a520de5627e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0d22d2f964a5200a4423e3',
        'name': 'Brezel Bar',
        'location': {'address': 'Friesenstr. 2',
         'lat': 52.488681,
         'lng': 13.394283,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.488681,
           'lng': 13.394283}],
         'distance': 487,
         'postalCode': '10965',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friesenstr. 2', '10965 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0d22d2f964a5200a4423e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51efc616498e10a083cf9399',
        'name': 'Goodcoffee',
        'location': {'address': 'Marheinekeplatz 15',
         'lat': 52.48939064294808,
         'lng': 13.394616451548226,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48939064294808,
           'lng': 13.394616451548226}],
         'distance': 407,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marheinekeplatz 15', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51efc616498e10a083cf9399-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4faa5f3ce4b04bd0be6d36d8',
        'name': '7 Schwestern',
        'location': {'address': 'Gneisenaustr. 65',
         'lat': 52.49004422069116,
         'lng': 13.402525052582936,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49004422069116,
           'lng': 13.402525052582936}],
         'distance': 443,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gneisenaustr. 65',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4faa5f3ce4b04bd0be6d36d8-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c8a0b62770fb60c2ad2cec3',
        'name': 'Alimentari e Vini',
        'location': {'address': 'Marheinekeplatz 15',
         'lat': 52.48928303323171,
         'lng': 13.394485590223717,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48928303323171,
           'lng': 13.394485590223717}],
         'distance': 422,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marheinekeplatz 15',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c8a0b62770fb60c2ad2cec3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520ab4621e3',
        'name': "Barcomi's Kaffeerösterei",
        'location': {'address': 'Bergmannstr. 21',
         'lat': 52.489165679461344,
         'lng': 13.393431247539324,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.489165679461344,
           'lng': 13.393431247539324}],
         'distance': 471,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstr. 21',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '5e18993feee47d000759b256',
          'name': 'Coffee Roaster',
          'pluralName': 'Coffee Roasters',
          'shortName': 'Coffee Roaster',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/food_gourmet_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520ab4621e3-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c53ed765b839521ac7bba31',
        'name': 'Coffee Cult',
        'location': {'address': 'Bergmannstr. 89',
         'lat': 52.48926321895144,
         'lng': 13.393264135545238,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48926321895144,
           'lng': 13.393264135545238}],
         'distance': 469,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstr. 89',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '552380659'}},
       'referralId': 'e-0-4c53ed765b839521ac7bba31-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5331845c11d2c17e3a83809c',
        'name': 'Caffè De Rosa',
        'location': {'address': 'Baerwaldstr. 45',
         'crossStreet': 'Gneisenaustr.',
         'lat': 52.49070750944803,
         'lng': 13.400660160467062,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49070750944803,
           'lng': 13.400660160467062}],
         'distance': 300,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Baerwaldstr. 45 (Gneisenaustr.)',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5331845c11d2c17e3a83809c-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52b161d211d2df3d8478974e',
        'name': 'Kafkas Bäckerei',
        'location': {'address': 'Urbanstr. 1',
         'lat': 52.494457927498416,
         'lng': 13.399932516890816,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494457927498416,
           'lng': 13.399932516890816}],
         'distance': 264,
         'postalCode': '10961',
         'cc': 'DE',
         'neighborhood': 'Kreuzberg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Urbanstr. 1', '10961 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52b161d211d2df3d8478974e-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '569a35f8498eb5f34c54fec4',
        'name': "gizmo's sweet coffee",
        'location': {'lat': 52.48927697701693,
         'lng': 13.39465410460478,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48927697701693,
           'lng': 13.39465410460478}],
         'distance': 417,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-569a35f8498eb5f34c54fec4-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58ef80ad9746174107a75240',
        'name': 'Balzac Caffee',
        'location': {'lat': 52.48931,
         'lng': 13.392743,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48931,
           'lng': 13.392743}],
         'distance': 487,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58ef80ad9746174107a75240-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5afd7963a89b5a00247988e6',
        'name': 'breakout Café',
        'location': {'address': 'Bergmannstraße 22',
         'lat': 52.488948,
         'lng': 13.393902,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.488948,
           'lng': 13.393902}],
         'distance': 474,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstraße 22',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5afd7963a89b5a00247988e6-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4aead457f964a5203fbc21e3',
        'name': 'Matzbach',
        'location': {'address': 'Marheinekeplatz 15',
         'lat': 52.48922725365876,
         'lng': 13.395571758203928,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48922725365876,
           'lng': 13.395571758203928}],
         'distance': 397,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marheinekeplatz 15',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4aead457f964a5203fbc21e3-17'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e80f5f91049c0f46bdc'},
  'response': {'headerLocation': 'Kreuzberg',
   'headerFullLocation': 'Kreuzberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 10,
   'suggestedBounds': {'ne': {'lat': 52.504800004500005,
     'lng': 13.38867831424946},
    'sw': {'lat': 52.4957999955, 'lng': 13.373921685750538}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53dc0690498e43c1f952aac8',
        'name': 'boum',
        'location': {'address': 'Tempelhofer Ufer 32',
         'lat': 52.49981529823926,
         'lng': 13.377295045397448,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49981529823926,
           'lng': 13.377295045397448}],
         'distance': 276,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tempelhofer Ufer 32',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53dc0690498e43c1f952aac8-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e143b30d16447c40d15f7c3',
        'name': 'Ökotussi',
        'location': {'address': 'Großbeerenstr. 11',
         'crossStreet': 'Tempelhofer Ufer',
         'lat': 52.498151706953045,
         'lng': 13.38478088378906,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498151706953045,
           'lng': 13.38478088378906}],
         'distance': 335,
         'postalCode': '10963',
         'cc': 'DE',
         'neighborhood': 'Viktoriakiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Großbeerenstr. 11 (Tempelhofer Ufer)',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e143b30d16447c40d15f7c3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c8b83de770fb60c1f6cdcc3',
        'name': 'Schnittchen',
        'location': {'address': 'Großbeerenstr. 78',
         'crossStreet': 'Obentrautstr.',
         'lat': 52.496999152207074,
         'lng': 13.384660932992407,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496999152207074,
           'lng': 13.384660932992407}],
         'distance': 432,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Großbeerenstr. 78 (Obentrautstr.)',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c8b83de770fb60c1f6cdcc3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af2b5bdf964a5204de821e3',
        'name': 'WAU | Wirtshaus am Ufer',
        'location': {'address': 'Hallesches Ufer 32',
         'crossStreet': 'Großbeerenstr.',
         'lat': 52.499000803653175,
         'lng': 13.385961055755615,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.499000803653175,
           'lng': 13.385961055755615}],
         'distance': 347,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hallesches Ufer 32 (Großbeerenstr.)',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af2b5bdf964a5204de821e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d219399756e8cfa5ed67654',
        'name': 'Café Rundum',
        'location': {'address': 'Stresemannstr. 37',
         'lat': 52.500827338963774,
         'lng': 13.386569301080185,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500827338963774,
           'lng': 13.386569301080185}],
         'distance': 361,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stresemannstr. 37',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d219399756e8cfa5ed67654-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55046316498e7c6aa5873e99',
        'name': 'Maracay Coffee',
        'location': {'address': 'Stresemannstr. 72',
         'lat': 52.50365648773195,
         'lng': 13.383749909765978,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50365648773195,
           'lng': 13.383749909765978}],
         'distance': 408,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stresemannstr. 72',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55046316498e7c6aa5873e99-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5189e9f8498e6a9a5bc69e35',
        'name': 'Croissanterie Berlin',
        'location': {'address': 'Schöneberger Str. 10',
         'lat': 52.50310953779765,
         'lng': 13.379269269443038,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50310953779765,
           'lng': 13.379269269443038}],
         'distance': 341,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schöneberger Str. 10',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5189e9f8498e6a9a5bc69e35-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e1b4f22ae60ddb8f651bba9',
        'name': 'Sehraya',
        'location': {'lat': 52.4971429003936,
         'lng': 13.384698457418418,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4971429003936,
           'lng': 13.384698457418418}],
         'distance': 420,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e1b4f22ae60ddb8f651bba9-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e6cae93d22d0f50962e645a',
        'name': 'Café Anhalt',
        'location': {'address': 'Trebbiner Str. 9',
         'lat': 52.49855085945708,
         'lng': 13.376906335426087,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49855085945708,
           'lng': 13.376906335426087}],
         'distance': 355,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Trebbiner Str. 9',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e6cae93d22d0f50962e645a-8'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e81cce9aa16743cf370'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Bergmannkiez',
   'headerFullLocation': 'Bergmannkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 12,
   'suggestedBounds': {'ne': {'lat': 52.490000004500004,
     'lng': 13.401975831509363},
    'sw': {'lat': 52.4809999955, 'lng': 13.387224168490638}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ccc3029c9b8468890d4bac3',
        'name': 'Golightly Coffee Bar',
        'location': {'address': 'Friesenstr. 22',
         'lat': 52.48792270750849,
         'lng': 13.394453434663497,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48792270750849,
           'lng': 13.394453434663497}],
         'distance': 269,
         'postalCode': '10965',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friesenstr. 22',
          '10965 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ccc3029c9b8468890d4bac3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eea5e33a17ce863c4d4c3d3',
        'name': 'Chapter One',
        'location': {'address': 'Mittenwalder Str. 30',
         'lat': 52.48976163897703,
         'lng': 13.395976072085904,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48976163897703,
           'lng': 13.395976072085904}],
         'distance': 483,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mittenwalder Str. 30',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eea5e33a17ce863c4d4c3d3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0d22d2f964a5200a4423e3',
        'name': 'Brezel Bar',
        'location': {'address': 'Friesenstr. 2',
         'lat': 52.488681,
         'lng': 13.394283,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.488681,
           'lng': 13.394283}],
         'distance': 354,
         'postalCode': '10965',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friesenstr. 2', '10965 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0d22d2f964a5200a4423e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51efc616498e10a083cf9399',
        'name': 'Goodcoffee',
        'location': {'address': 'Marheinekeplatz 15',
         'lat': 52.48939064294808,
         'lng': 13.394616451548226,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48939064294808,
           'lng': 13.394616451548226}],
         'distance': 433,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marheinekeplatz 15', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51efc616498e10a083cf9399-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c8a0b62770fb60c2ad2cec3',
        'name': 'Alimentari e Vini',
        'location': {'address': 'Marheinekeplatz 15',
         'lat': 52.48928303323171,
         'lng': 13.394485590223717,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48928303323171,
           'lng': 13.394485590223717}],
         'distance': 421,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marheinekeplatz 15',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c8a0b62770fb60c2ad2cec3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520ab4621e3',
        'name': "Barcomi's Kaffeerösterei",
        'location': {'address': 'Bergmannstr. 21',
         'lat': 52.489165679461344,
         'lng': 13.393431247539324,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.489165679461344,
           'lng': 13.393431247539324}],
         'distance': 415,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstr. 21',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '5e18993feee47d000759b256',
          'name': 'Coffee Roaster',
          'pluralName': 'Coffee Roasters',
          'shortName': 'Coffee Roaster',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/food_gourmet_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520ab4621e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c53ed765b839521ac7bba31',
        'name': 'Coffee Cult',
        'location': {'address': 'Bergmannstr. 89',
         'lat': 52.48926321895144,
         'lng': 13.393264135545238,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48926321895144,
           'lng': 13.393264135545238}],
         'distance': 428,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstr. 89',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '552380659'}},
       'referralId': 'e-0-4c53ed765b839521ac7bba31-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '569a35f8498eb5f34c54fec4',
        'name': "gizmo's sweet coffee",
        'location': {'lat': 52.48927697701693,
         'lng': 13.39465410460478,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48927697701693,
           'lng': 13.39465410460478}],
         'distance': 420,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-569a35f8498eb5f34c54fec4-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58ef80ad9746174107a75240',
        'name': 'Balzac Caffee',
        'location': {'lat': 52.48931,
         'lng': 13.392743,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48931,
           'lng': 13.392743}],
         'distance': 442,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58ef80ad9746174107a75240-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5afd7963a89b5a00247988e6',
        'name': 'breakout Café',
        'location': {'address': 'Bergmannstraße 22',
         'lat': 52.488948,
         'lng': 13.393902,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.488948,
           'lng': 13.393902}],
         'distance': 386,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstraße 22',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5afd7963a89b5a00247988e6-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4aead457f964a5203fbc21e3',
        'name': 'Matzbach',
        'location': {'address': 'Marheinekeplatz 15',
         'lat': 52.48922725365876,
         'lng': 13.395571758203928,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48922725365876,
           'lng': 13.395571758203928}],
         'distance': 420,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marheinekeplatz 15',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4aead457f964a5203fbc21e3-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b1937c6f964a52062d923e3',
        'name': 'Kaffee am Meer',
        'location': {'address': 'Bergmannstr. 95',
         'lat': 52.48952669654143,
         'lng': 13.391443022543472,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48952669654143,
           'lng': 13.391443022543472}],
         'distance': 496,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstr. 95',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b1937c6f964a52062d923e3-11'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e81726940047d4caba2'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Graefekiez',
   'headerFullLocation': 'Graefekiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 24,
   'suggestedBounds': {'ne': {'lat': 52.4950000045, 'lng': 13.42377667003095},
    'sw': {'lat': 52.485999995499995, 'lng': 13.409023329969049}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '544f8e61498eafa13b4a689e',
        'name': 'Zazza',
        'location': {'lat': 52.4918024151049,
         'lng': 13.420756831047827,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4918024151049,
           'lng': 13.420756831047827}],
         'distance': 328,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-544f8e61498eafa13b4a689e-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '525bcc3f11d2b20ff55820e8',
        'name': 'no milk today',
        'location': {'address': 'Fichtestr. 3',
         'lat': 52.49097630848223,
         'lng': 13.413017914739102,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49097630848223,
           'lng': 13.413017914739102}],
         'distance': 235,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fichtestr. 3', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '80731135'}},
       'referralId': 'e-0-525bcc3f11d2b20ff55820e8-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55aa26e0498e3edffc141170',
        'name': 'playing with eels',
        'location': {'address': 'Urbanstraße 32',
         'crossStreet': 'Fichtestraße',
         'lat': 52.49142942289499,
         'lng': 13.414000847075965,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49142942289499,
           'lng': 13.414000847075965}],
         'distance': 192,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Urbanstraße 32 (Fichtestraße)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55aa26e0498e3edffc141170-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '577cf059498e659c09f86955',
        'name': 'Löblich',
        'location': {'address': 'Hasenheide 49',
         'lat': 52.488912,
         'lng': 13.411035,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.488912,
           'lng': 13.411035}],
         'distance': 404,
         'postalCode': '10967',
         'cc': 'DE',
         'neighborhood': 'Urban',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hasenheide 49', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-577cf059498e659c09f86955-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc99fec3740b71348fa5e65',
        'name': 'Goldmarie',
        'location': {'address': 'Grimmstr. 29',
         'crossStreet': 'Böckhstr.',
         'lat': 52.49467677113297,
         'lng': 13.41556191444397,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49467677113297,
           'lng': 13.41556191444397}],
         'distance': 468,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grimmstr. 29 (Böckhstr.)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc99fec3740b71348fa5e65-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cc20f7b38aaa09342d50362',
        'name': 'Dildile',
        'location': {'address': 'Dieffenbach str 62',
         'lat': 52.49307604638997,
         'lng': 13.415168132279412,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49307604638997,
           'lng': 13.415168132279412}],
         'distance': 298,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dieffenbach str 62',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cc20f7b38aaa09342d50362-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c332f30213c2d7fee7a365d',
        'name': 'La Femme',
        'location': {'address': 'Kottbusser Damm 77',
         'crossStreet': 'Pflügerstr.',
         'lat': 52.490939737012106,
         'lng': 13.423513063950589,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490939737012106,
           'lng': 13.423513063950589}],
         'distance': 484,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kottbusser Damm 77 (Pflügerstr.)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c332f30213c2d7fee7a365d-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c13b0cda1010f473d044b18',
        'name': 'Schönes Café',
        'location': {'address': 'Dieffenbachstr. 51',
         'lat': 52.49226060640314,
         'lng': 13.417889380628731,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49226060640314,
           'lng': 13.417889380628731}],
         'distance': 220,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dieffenbachstr. 51',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c13b0cda1010f473d044b18-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d921e84270e6ea8858262ff',
        'name': 'Narr Bar',
        'location': {'address': 'Böckhstr. 24',
         'lat': 52.493282292259515,
         'lng': 13.42062758726626,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493282292259515,
           'lng': 13.42062758726626}],
         'distance': 421,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Böckhstr. 24', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d921e84270e6ea8858262ff-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '598f0f0516ef6706699c1222',
        'name': 'Kaffee Kirsche Roastery',
        'location': {'address': 'Böckhstr. 30',
         'crossStreet': 'Kottbusser Damm',
         'lat': 52.493115247914595,
         'lng': 13.421864808950849,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493115247914595,
           'lng': 13.421864808950849}],
         'distance': 471,
         'postalCode': '10967',
         'cc': 'DE',
         'neighborhood': 'Graefekiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Böckhstr. 30 (Kottbusser Damm)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-598f0f0516ef6706699c1222-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e184e9714957dc705d59a21',
        'name': 'KaffeeBar',
        'location': {'address': 'Graefestr. 8',
         'lat': 52.49428567051442,
         'lng': 13.418727812908049,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49428567051442,
           'lng': 13.418727812908049}],
         'distance': 449,
         'postalCode': '10967',
         'cc': 'DE',
         'neighborhood': 'Graefekiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Graefestr. 8', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e184e9714957dc705d59a21-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ed6214bb8f7304633529344',
        'name': 'Sala7',
        'location': {'address': 'Grimmstr. 7',
         'lat': 52.49378150814359,
         'lng': 13.413695096969604,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49378150814359,
           'lng': 13.413695096969604}],
         'distance': 408,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grimmstr. 7', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ed6214bb8f7304633529344-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51cef281498eec9cc21fd692',
        'name': 'Melro',
        'location': {'address': 'Graefestr. 10',
         'lat': 52.49403307523592,
         'lng': 13.418564750283036,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49403307523592,
           'lng': 13.418564750283036}],
         'distance': 419,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Graefestr. 10', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51cef281498eec9cc21fd692-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e9998d3775b6787c2d0409a',
        'name': 'Suess Speisen',
        'location': {'address': 'Urbanstr. 131',
         'lat': 52.49146991224198,
         'lng': 13.414602640610363,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49146991224198,
           'lng': 13.414602640610363}],
         'distance': 162,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Urbanstr. 131', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e9998d3775b6787c2d0409a-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b90bb43f964a520a59533e3',
        'name': 'Monsieur Ibrahim',
        'location': {'address': 'Körtestr. 8',
         'lat': 52.49127914808099,
         'lng': 13.411446557081689,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49127914808099,
           'lng': 13.411446557081689}],
         'distance': 346,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Körtestr. 8', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b90bb43f964a520a59533e3-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc378f3b492d13a1acda860',
        'name': 'Isabel',
        'location': {'address': 'Böckhstr. 1',
         'lat': 52.49460095203817,
         'lng': 13.415509533803004,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49460095203817,
           'lng': 13.415509533803004}],
         'distance': 460,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Böckhstr. 1', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc378f3b492d13a1acda860-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a2eaad16bdee626736f40bd',
        'name': 'Mephisto Cafe',
        'location': {'lat': 52.493985,
         'lng': 13.418309,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493985,
           'lng': 13.418309}],
         'distance': 408,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a2eaad16bdee626736f40bd-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd13269b221c9b6a347d5d0',
        'name': 'Oetcke',
        'location': {'address': 'Freiligrathstraße 8',
         'crossStreet': 'Körtestraße',
         'lat': 52.49086243022375,
         'lng': 13.410416542055044,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49086243022375,
           'lng': 13.410416542055044}],
         'distance': 407,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Freiligrathstraße 8 (Körtestraße)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd13269b221c9b6a347d5d0-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c62bb42898bdc002c245e37',
        'name': 'Atlas',
        'location': {'address': 'Gräfestraße 10',
         'lat': 52.493684,
         'lng': 13.418195,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493684,
           'lng': 13.418195}],
         'distance': 374,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gräfestraße 10',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c62bb42898bdc002c245e37-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c1a053afe5a76b02a650415',
        'name': 'Café Bethesda',
        'location': {'address': 'Dieffenbachstr. 44',
         'lat': 52.4919,
         'lng': 13.41936,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4919,
           'lng': 13.41936}],
         'distance': 254,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dieffenbachstr. 44',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c1a053afe5a76b02a650415-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bb252412397b7135ddb36b3',
        'name': 'Masaniello',
        'location': {'address': 'Hasenheide 20',
         'crossStreet': 'Jahnstr.',
         'lat': 52.487680451045065,
         'lng': 13.419223551580718,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.487680451045065,
           'lng': 13.419223551580718}],
         'distance': 367,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hasenheide 20 (Jahnstr.)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1ca941735',
          'name': 'Pizza Place',
          'pluralName': 'Pizza Places',
          'shortName': 'Pizza',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/pizza_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bb252412397b7135ddb36b3-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56b61901498e2c32d1d2feda',
        'name': 'Dobedo',
        'location': {'address': 'Graefestrasse 82',
         'lat': 52.49375422142633,
         'lng': 13.417845917416518,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49375422142633,
           'lng': 13.417845917416518}],
         'distance': 375,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Graefestrasse 82',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56b61901498e2c32d1d2feda-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ce9192cf1c6236a0ba763f0',
        'name': 'Raffiné',
        'location': {'address': 'Hasenheide 12',
         'lat': 52.48732261245657,
         'lng': 13.42155574258197,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48732261245657,
           'lng': 13.42155574258197}],
         'distance': 497,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hasenheide 12', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ce9192cf1c6236a0ba763f0-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53e75cec498ed3877e5ac367',
        'name': 'TZOM',
        'location': {'address': 'Dieffenbachstr. 69',
         'crossStreet': 'Grimmstr.',
         'lat': 52.49361275394741,
         'lng': 13.412532235726932,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49361275394741,
           'lng': 13.412532235726932}],
         'distance': 434,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dieffenbachstr. 69 (Grimmstr.)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1c8941735',
          'name': 'African Restaurant',
          'pluralName': 'African Restaurants',
          'shortName': 'African',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/african_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53e75cec498ed3877e5ac367-23'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8215cbfb5134f1b383'},
  'response': {'headerLocation': 'Kreuzberg',
   'headerFullLocation': 'Kreuzberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.5070000045, 'lng': 13.408578683490159},
    'sw': {'lat': 52.497999995499995, 'lng': 13.39382131650984}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a520364d552c76a47afad4b',
        'name': 'ZWEITAUSEND - Kaffee Kantine',
        'location': {'address': 'Lobeckstrasse 30-35',
         'lat': 52.503108893768555,
         'lng': 13.407526016235352,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503108893768555,
           'lng': 13.407526016235352}],
         'distance': 433,
         'postalCode': '10969',
         'cc': 'DE',
         'neighborhood': 'Moritzplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lobeckstrasse 30-35',
          '10969 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a520364d552c76a47afad4b-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e89d0b2b634bc3516294470',
        'name': 'Café Dix',
        'location': {'address': 'Alte Jakobstr. 124-128',
         'lat': 52.50346734473606,
         'lng': 13.39855135289351,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50346734473606,
           'lng': 13.39855135289351}],
         'distance': 209,
         'postalCode': '10969',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alte Jakobstr. 124-128',
          '10969 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e89d0b2b634bc3516294470-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50729624e4b09822b9b53fb7',
        'name': 'Café Schmus',
        'location': {'address': 'Lindenstr. 9-14',
         'lat': 52.502393761003546,
         'lng': 13.395649194717407,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.502393761003546,
           'lng': 13.395649194717407}],
         'distance': 376,
         'postalCode': '10969',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lindenstr. 9-14',
          '10969 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50729624e4b09822b9b53fb7-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5360cff9498eb95c3721222b',
        'name': 'Café Linden',
        'location': {'address': 'Lindenstr. 26',
         'lat': 52.504426149845784,
         'lng': 13.39639271167637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.504426149845784,
           'lng': 13.39639271167637}],
         'distance': 389,
         'postalCode': '10969',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lindenstr. 26', '10969 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5360cff9498eb95c3721222b-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e823023093e62ed2f83'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Kreuzberg',
   'headerFullLocation': 'Kreuzberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 31,
   'suggestedBounds': {'ne': {'lat': 52.505400004500004,
     'lng': 13.442978414946728},
    'sw': {'lat': 52.4963999955, 'lng': 13.428221585053274}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '513ed476e4b0579d42f760cc',
        'name': 'eliza - Café & Lieblingsstücke',
        'location': {'address': 'Sorauer Str. 6',
         'lat': 52.49902670119798,
         'lng': 13.438600811407404,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49902670119798,
           'lng': 13.438600811407404}],
         'distance': 291,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sorauer Str. 6',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '55590248'}},
       'referralId': 'e-0-513ed476e4b0579d42f760cc-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b711281f964a520ef382de3',
        'name': 'Baretto',
        'location': {'address': 'Wrangelstrasse',
         'crossStreet': 'Sorauerstraße',
         'lat': 52.49985010430558,
         'lng': 13.438835664396496,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49985010430558,
           'lng': 13.438835664396496}],
         'distance': 248,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstrasse (Sorauerstraße)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b711281f964a520ef382de3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af49b4af964a52048f421e3',
        'name': 'Mano Cafe',
        'location': {'address': 'Skalitzer Str. 46A',
         'lat': 52.49912861276276,
         'lng': 13.430566300836764,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49912861276276,
           'lng': 13.430566300836764}],
         'distance': 394,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Skalitzer Str. 46A',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af49b4af964a52048f421e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51e81096498e6b71591d4db4',
        'name': 'Salumeria Lamuri',
        'location': {'address': 'Köpenicker Str.183',
         'lat': 52.50309729215354,
         'lng': 13.438077108747732,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50309729215354,
           'lng': 13.438077108747732}],
         'distance': 296,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Köpenicker Str.183',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51e81096498e6b71591d4db4-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57f6322e498ef9ae27cd0158',
        'name': 'Pola Café',
        'location': {'address': 'Köpenicker Straße 10',
         'lat': 52.503141917674284,
         'lng': 13.438058605641771,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503141917674284,
           'lng': 13.438058605641771}],
         'distance': 300,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Köpenicker Straße 10',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57f6322e498ef9ae27cd0158-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c2113f313c00f47586785de',
        'name': 'Lerchen und Eulen',
        'location': {'address': 'Pücklerstr. 33',
         'crossStreet': 'Muskauer Str.',
         'lat': 52.50212333819094,
         'lng': 13.430743217468262,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50212333819094,
           'lng': 13.430743217468262}],
         'distance': 356,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pücklerstr. 33 (Muskauer Str.)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c2113f313c00f47586785de-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eaaf05c0aafb00bd8c13cda',
        'name': 'laksmi',
        'location': {'address': 'Wrangelstr.93',
         'lat': 52.49968545261818,
         'lng': 13.439424656593395,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49968545261818,
           'lng': 13.439424656593395}],
         'distance': 292,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr.93',
          'Berlin-Kreuzberg',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eaaf05c0aafb00bd8c13cda-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c127e1477cea5939d26cd60',
        'name': 'Café Quitte',
        'location': {'address': 'Wiener Str. 62',
         'lat': 52.498255,
         'lng': 13.430397,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498255,
           'lng': 13.430397}],
         'distance': 459,
         'postalCode': '10999',
         'cc': 'DE',
         'neighborhood': 'Wiener Kiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener Str. 62',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c127e1477cea5939d26cd60-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50b7c7cbe4b08ce3c6bd56a8',
        'name': 'Sumak Teehaus',
        'location': {'address': 'Wrangelstr. 46',
         'lat': 52.49919280814795,
         'lng': 13.440190826698386,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49919280814795,
           'lng': 13.440190826698386}],
         'distance': 364,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 46',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50b7c7cbe4b08ce3c6bd56a8-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b68588c628c83002c442993',
        'name': 'Barny’s Deli',
        'location': {'address': 'Oppelnerstraße 34',
         'lat': 52.498441,
         'lng': 13.439639,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498441,
           'lng': 13.439639}],
         'distance': 387,
         'cc': 'DE',
         'neighborhood': 'Wrangelkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oppelnerstraße 34', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b68588c628c83002c442993-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c0fed11b93cc9b620ef55e0',
        'name': 'Tanne B',
        'location': {'address': 'Eisenbahnstr. 48',
         'lat': 52.50096863828578,
         'lng': 13.43125467051463,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50096863828578,
           'lng': 13.43125467051463}],
         'distance': 294,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eisenbahnstr. 48',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c0fed11b93cc9b620ef55e0-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af5de29f964a5200bfe21e3',
        'name': 'Nest',
        'location': {'address': 'Görlitzer Str. 52',
         'crossStreet': 'Oppelner Str.',
         'lat': 52.49712052755012,
         'lng': 13.439009234381851,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49712052755012,
           'lng': 13.439009234381851}],
         'distance': 479,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Görlitzer Str. 52 (Oppelner Str.)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '42413796'}},
       'referralId': 'e-0-4af5de29f964a5200bfe21e3-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bdcb3c0e0c0c9002cb0c818',
        'name': 'Exbar',
        'location': {'address': 'Wrangelstraße 88',
         'crossStreet': 'Oppelner Str',
         'lat': 52.499102,
         'lng': 13.440439,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.499102,
           'lng': 13.440439}],
         'distance': 384,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstraße 88 (Oppelner Str)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5bdcb3c0e0c0c9002cb0c818-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e5977efb61c4aaa3dfe9c73',
        'name': 'Tante Emma',
        'location': {'address': 'Köpenicker Str. 1a',
         'lat': 52.50126087388172,
         'lng': 13.44167773616767,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50126087388172,
           'lng': 13.44167773616767}],
         'distance': 413,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Köpenicker Str. 1a',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e5977efb61c4aaa3dfe9c73-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cd5643a67c7236ad5721277',
        'name': 'Passenger Espresso',
        'location': {'address': 'Oppelner Str. 45',
         'lat': 52.49991846280261,
         'lng': 13.441139459609984,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49991846280261,
           'lng': 13.441139459609984}],
         'distance': 390,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oppelner Str. 45',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cd5643a67c7236ad5721277-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50474205e4b04aab883cc84c',
        'name': "Benito's",
        'location': {'address': 'Oppelner Str. 34',
         'lat': 52.498521,
         'lng': 13.439542,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498521,
           'lng': 13.439542}],
         'distance': 376,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oppelner Str. 34', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50474205e4b04aab883cc84c-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55804640498e439bd0d0091e',
        'name': 'Estate Coffee',
        'location': {'address': 'Wrangelstr. 39',
         'lat': 52.500178952085236,
         'lng': 13.438254841572014,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500178952085236,
           'lng': 13.438254841572014}],
         'distance': 197,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 39',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55804640498e439bd0d0091e-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4a91ddfaf964a5202e1c20e3',
        'name': 'Sofia',
        'location': {'address': 'Wrangelstr. 93',
         'lat': 52.49965524242675,
         'lng': 13.439278756549548,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49965524242675,
           'lng': 13.439278756549548}],
         'distance': 285,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 93',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4a91ddfaf964a5202e1c20e3-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57ca9752498e22fc8f3ce61e',
        'name': 'Café Mugrabi',
        'location': {'address': 'Görlitzer Str. 58',
         'crossStreet': 'Sorauer Str.',
         'lat': 52.49770362044022,
         'lng': 13.43741654590141,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49770362044022,
           'lng': 13.43741654590141}],
         'distance': 376,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Görlitzer Str. 58 (Sorauer Str.)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d143941735',
          'name': 'Breakfast Spot',
          'pluralName': 'Breakfast Spots',
          'shortName': 'Breakfast',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/breakfast_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57ca9752498e22fc8f3ce61e-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520b74621e3',
        'name': 'Tiki Heart',
        'location': {'address': 'Wiener Str. 20',
         'lat': 52.497649326232704,
         'lng': 13.431012628518316,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497649326232704,
           'lng': 13.431012628518316}],
         'distance': 477,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener Str. 20',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520b74621e3-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda7af964a520d74621e3',
        'name': 'Vor Wien Cafe & Bar',
        'location': {'address': 'Skalitzer Str. 41',
         'lat': 52.49924412383947,
         'lng': 13.428728027546239,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49924412383947,
           'lng': 13.428728027546239}],
         'distance': 500,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Skalitzer Str. 41',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda7af964a520d74621e3-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56bf5aa8cd108bebe04c5736',
        'name': 'Kaffesatz',
        'location': {'address': 'Wrangelstr. 43',
         'lat': 52.499561,
         'lng': 13.439445,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.499561,
           'lng': 13.439445}],
         'distance': 300,
         'postalCode': '10997',
         'cc': 'DE',
         'neighborhood': 'Wrangelkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 43',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56bf5aa8cd108bebe04c5736-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af1f785f964a520d6e421e3',
        'name': 'Marabu Bar',
        'location': {'address': 'Oppelner Str. 23',
         'lat': 52.49734159466285,
         'lng': 13.43840587223467,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49734159466285,
           'lng': 13.43840587223467}],
         'distance': 439,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oppelner Str. 23',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af1f785f964a520d6e421e3-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '561148ab498e273034421991',
        'name': "Radler's",
        'location': {'address': 'Wiener str. 31',
         'lat': 52.49667692560691,
         'lng': 13.433896521274004,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49667692560691,
           'lng': 13.433896521274004}],
         'distance': 484,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener str. 31',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-561148ab498e273034421991-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5947a8ee65cdf867908f73e9',
        'name': 'People',
        'location': {'address': 'Eisenbahnstraße 4',
         'lat': 52.501793,
         'lng': 13.432256,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501793,
           'lng': 13.432256}],
         'distance': 247,
         'postalCode': '10997',
         'cc': 'DE',
         'neighborhood': 'Kreuzberg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eisenbahnstraße 4',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5947a8ee65cdf867908f73e9-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51ebfd11498e2f5b08ec097b',
        'name': "Dino's Bistro + Café",
        'location': {'address': 'Wrangelstr. 43',
         'lat': 52.49961083277039,
         'lng': 13.439392031750952,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49961083277039,
           'lng': 13.439392031750952}],
         'distance': 294,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 43',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51ebfd11498e2f5b08ec097b-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4db7e32493a04a7c307407a5',
        'name': 'Café Mon Cherie',
        'location': {'address': 'Köpenicker Straße 183',
         'lat': 52.50311081972456,
         'lng': 13.438043815890795,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50311081972456,
           'lng': 13.438043815890795}],
         'distance': 296,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Köpenicker Straße 183',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4db7e32493a04a7c307407a5-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58f74989826444722be57d99',
        'name': 'Kaffeesatz cafe Bar',
        'location': {'lat': 52.499487,
         'lng': 13.439626,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.499487,
           'lng': 13.439626}],
         'distance': 314,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58f74989826444722be57d99-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b4f127df964a520aff926e3',
        'name': "McDonald's",
        'location': {'address': 'Wrangelstr. 35',
         'lat': 52.50063525098222,
         'lng': 13.436244420107878,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50063525098222,
           'lng': 13.436244420107878}],
         'distance': 52,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 35',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b4f127df964a520aff926e3-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ee0e38bf9ab28df8269bd38',
        'name': 'Hühnerhaus 36',
        'location': {'address': 'Skalitzer Str. 95',
         'crossStreet': 'Lausitzer Platz',
         'lat': 52.499852,
         'lng': 13.432076,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.499852,
           'lng': 13.432076}],
         'distance': 265,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Skalitzer Str. 95 (Lausitzer Platz)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4d4ae6fc7a7b7dea34424761',
          'name': 'Fried Chicken Joint',
          'pluralName': 'Fried Chicken Joints',
          'shortName': 'Fried Chicken',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/friedchicken_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ee0e38bf9ab28df8269bd38-29'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8315cbfb5134f1b7df'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Kreuzberg',
   'headerFullLocation': 'Kreuzberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 43,
   'suggestedBounds': {'ne': {'lat': 52.5014000045, 'lng': 13.433977743698824},
    'sw': {'lat': 52.492399995499994, 'lng': 13.419222256301177}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56c859ce498e4246a80cdaf0',
        'name': 'Populus Coffee',
        'location': {'address': 'Maybachufer 20',
         'crossStreet': 'Bürknerstr.',
         'lat': 52.493718,
         'lng': 13.427157,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493718,
           'lng': 13.427157}],
         'distance': 356,
         'postalCode': '12045',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 20 (Bürknerstr.)',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '559162275'}},
       'referralId': 'e-0-56c859ce498e4246a80cdaf0-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c127e1477cea5939d26cd60',
        'name': 'Café Quitte',
        'location': {'address': 'Wiener Str. 62',
         'lat': 52.498255,
         'lng': 13.430397,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498255,
           'lng': 13.430397}],
         'distance': 298,
         'postalCode': '10999',
         'cc': 'DE',
         'neighborhood': 'Wiener Kiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener Str. 62',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c127e1477cea5939d26cd60-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af49b4af964a52048f421e3',
        'name': 'Mano Cafe',
        'location': {'address': 'Skalitzer Str. 46A',
         'lat': 52.49912861276276,
         'lng': 13.430566300836764,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49912861276276,
           'lng': 13.430566300836764}],
         'distance': 365,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Skalitzer Str. 46A',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af49b4af964a52048f421e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58874ab0fc5a5f5f2591a483',
        'name': 'Tenur - Kurdische Küche',
        'location': {'address': 'Reichenberger Str. 147',
         'lat': 52.4971324,
         'lng': 13.4258939,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4971324,
           'lng': 13.4258939}],
         'distance': 54,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reichenberger Str. 147',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58874ab0fc5a5f5f2591a483-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '537b5119498e3e9c9b7fff24',
        'name': 'Roka Bell',
        'location': {'lat': 52.495362052108916,
         'lng': 13.430104641745167,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.495362052108916,
           'lng': 13.430104641745167}],
         'distance': 292,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-537b5119498e3e9c9b7fff24-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '570b8046498efb0ebad5876f',
        'name': "Brammibal's Donuts",
        'location': {'address': 'Maybachufer 8',
         'lat': 52.49511480778854,
         'lng': 13.423046367656958,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49511480778854,
           'lng': 13.423046367656958}],
         'distance': 312,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 8', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '216285675'}},
       'referralId': 'e-0-570b8046498efb0ebad5876f-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5188b033498eaddd9b20d034',
        'name': 'pop kultur',
        'location': {'address': 'Paul-Lincke-Ufer 41',
         'lat': 52.496100744208995,
         'lng': 13.421816825866697,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496100744208995,
           'lng': 13.421816825866697}],
         'distance': 336,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Lincke-Ufer 41',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5188b033498eaddd9b20d034-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6abee81a6620a17cdb668c',
        'name': 'Café Jacques',
        'location': {'address': 'Maybachufer 14',
         'crossStreet': 'Hobrechtstrasse',
         'lat': 52.49416461128441,
         'lng': 13.425378799438477,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49416461128441,
           'lng': 13.425378799438477}],
         'distance': 315,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 14 (Hobrechtstrasse)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6abee81a6620a17cdb668c-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4df245777d8b18e1722a3390',
        'name': 'Restaurant Bastard',
        'location': {'address': 'Reichenberger Str. 122',
         'lat': 52.495228729472586,
         'lng': 13.431698083877563,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.495228729472586,
           'lng': 13.431698083877563}],
         'distance': 392,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reichenberger Str. 122',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '450580870'}},
       'referralId': 'e-0-4df245777d8b18e1722a3390-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b90f5e0f964a520419c33e3',
        'name': 'Cutie Pie',
        'location': {'address': 'Lausitzer Str. 8',
         'lat': 52.49764345675097,
         'lng': 13.428971029274717,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49764345675097,
           'lng': 13.428971029274717}],
         'distance': 180,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lausitzer Str. 8',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b90f5e0f964a520419c33e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e538befcb604100083c7508',
        'name': 'Kitten',
        'location': {'address': 'Friedelstr. 30',
         'lat': 52.492876,
         'lng': 13.428354,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.492876,
           'lng': 13.428354}],
         'distance': 463,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 30',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e538befcb604100083c7508-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a520984521e3',
        'name': 'Morgenland',
        'location': {'address': 'Skalitzer Str. 35',
         'lat': 52.498930498070465,
         'lng': 13.42591411356607,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498930498070465,
           'lng': 13.42591411356607}],
         'distance': 230,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Skalitzer Str. 35',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a520984521e3-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dd276db6365cd4836e36195',
        'name': "Katie's Blue Cat",
        'location': {'address': 'Friedelstr. 31',
         'lat': 52.49297512815172,
         'lng': 13.428254127502441,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49297512815172,
           'lng': 13.428254127502441}],
         'distance': 451,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 31',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dd276db6365cd4836e36195-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '503dd222e4b0ae1ab4f5de84',
        'name': 'Kiezeklein',
        'location': {'address': 'Mariannenstr. 7',
         'crossStreet': 'Heinrichplatz',
         'lat': 52.50072571606996,
         'lng': 13.423410212142574,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50072571606996,
           'lng': 13.423410212142574}],
         'distance': 477,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mariannenstr. 7 (Heinrichplatz)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-503dd222e4b0ae1ab4f5de84-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cd16d217f56a143853ad4a6',
        'name': 'Café Jenseits',
        'location': {'address': 'Oranienstr. 16',
         'lat': 52.500593,
         'lng': 13.422922,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500593,
           'lng': 13.422922}],
         'distance': 480,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oranienstr. 16',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cd16d217f56a143853ad4a6-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51d3f1e2498e15ad7aa4c00e',
        'name': 'Concierge Coffee',
        'location': {'address': 'Paul-Lincke-Ufer 39/40',
         'lat': 52.49607704120797,
         'lng': 13.422148954474327,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49607704120797,
           'lng': 13.422148954474327}],
         'distance': 315,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Lincke-Ufer 39/40',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51d3f1e2498e15ad7aa4c00e-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4caf8b96ef1b370408503300',
        'name': 'Café Mori',
        'location': {'address': 'Wiener Str. 13',
         'lat': 52.49858342772442,
         'lng': 13.428599492099389,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49858342772442,
           'lng': 13.428599492099389}],
         'distance': 231,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener Str. 13',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '35557669'}},
       'referralId': 'e-0-4caf8b96ef1b370408503300-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '550ea3ba498e7aa1df5ddbdd',
        'name': 'Espresso Sin Fronteras',
        'location': {'address': 'Maybachufer 21',
         'lat': 52.493724553821195,
         'lng': 13.427544146058958,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493724553821195,
           'lng': 13.427544146058958}],
         'distance': 359,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 21', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-550ea3ba498e7aa1df5ddbdd-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d9b1b48674ca1432684ca43',
        'name': "D'Espresso",
        'location': {'address': 'Manteuffelstr. 100',
         'crossStreet': 'Waldemarstr.',
         'lat': 52.50119942706753,
         'lng': 13.42821104424064,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50119942706753,
           'lng': 13.42821104424064}],
         'distance': 490,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Manteuffelstr. 100 (Waldemarstr.)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d9b1b48674ca1432684ca43-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b129449f964a520018b23e3',
        'name': 'Pfeiffers',
        'location': {'address': 'Oranienstr. 17',
         'lat': 52.50041791681981,
         'lng': 13.42288805400447,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50041791681981,
           'lng': 13.42288805400447}],
         'distance': 465,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oranienstr. 17',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b129449f964a520018b23e3-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda7af964a520d74621e3',
        'name': 'Vor Wien Cafe & Bar',
        'location': {'address': 'Skalitzer Str. 41',
         'lat': 52.49924412383947,
         'lng': 13.428728027546239,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49924412383947,
           'lng': 13.428728027546239}],
         'distance': 298,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Skalitzer Str. 41',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda7af964a520d74621e3-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520b74621e3',
        'name': 'Tiki Heart',
        'location': {'address': 'Wiener Str. 20',
         'lat': 52.497649326232704,
         'lng': 13.431012628518316,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497649326232704,
           'lng': 13.431012628518316}],
         'distance': 310,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener Str. 20',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520b74621e3-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5831956f9b615c4920ffeb19',
        'name': 'Kreuz Kaffee',
        'location': {'address': 'Ohlauer Straße 41',
         'lat': 52.494430339403344,
         'lng': 13.42912644724232,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494430339403344,
           'lng': 13.42912644724232}],
         'distance': 323,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ohlauer Straße 41',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5831956f9b615c4920ffeb19-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a520074621e3',
        'name': 'Bâteau Ivre',
        'location': {'address': 'Oranienstr. 18',
         'crossStreet': 'Heinrichplatz',
         'lat': 52.50046055849627,
         'lng': 13.422589302062988,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50046055849627,
           'lng': 13.422589302062988}],
         'distance': 480,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oranienstr. 18 (Heinrichplatz)',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a520074621e3-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c3ca7c27c1ee21e12df8c71',
        'name': 'Cassonade',
        'location': {'address': 'Oranienstr. 199',
         'lat': 52.50007520351811,
         'lng': 13.42391918877273,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50007520351811,
           'lng': 13.42391918877273}],
         'distance': 397,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oranienstr. 199',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c3ca7c27c1ee21e12df8c71-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eb51ef44901cef9d861dd68',
        'name': 'Weincafe Wanderbühne',
        'location': {'lat': 52.49276617937026,
         'lng': 13.427946149616323,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49276617937026,
           'lng': 13.427946149616323}],
         'distance': 469,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eb51ef44901cef9d861dd68-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520aa4521e3',
        'name': 'Milchbar',
        'location': {'address': 'Manteuffelstr. 40-41',
         'lat': 52.49963888459203,
         'lng': 13.426573241226839,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49963888459203,
           'lng': 13.426573241226839}],
         'distance': 304,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Manteuffelstr. 40-41',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520aa4521e3-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '561148ab498e273034421991',
        'name': "Radler's",
        'location': {'address': 'Wiener str. 31',
         'lat': 52.49667692560691,
         'lng': 13.433896521274004,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49667692560691,
           'lng': 13.433896521274004}],
         'distance': 495,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener str. 31',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-561148ab498e273034421991-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59ba208189e4903cca8c4cfd',
        'name': 'Lorî - Café, Restaurant, Cocktailbar',
        'location': {'address': 'Wiener Str. 69',
         'lat': 52.49912799984148,
         'lng': 13.42798400309672,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49912799984148,
           'lng': 13.42798400309672}],
         'distance': 265,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener Str. 69',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59ba208189e4903cca8c4cfd-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51f6598a498e177733cba9ed',
        'name': 'Key',
        'location': {'address': 'Manteuffelstr. 52',
         'lat': 52.497677337372316,
         'lng': 13.42489203229572,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497677337372316,
           'lng': 13.42489203229572}],
         'distance': 144,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Manteuffelstr. 52',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51f6598a498e177733cba9ed-29'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c161119a5eb76b0c529c4b7',
        'name': 'Regenbogen Café',
        'location': {'address': 'Lausitzer Str. 22 a',
         'lat': 52.49553345,
         'lng': 13.42719,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49553345,
           'lng': 13.42719}],
         'distance': 157,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lausitzer Str. 22 a',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c161119a5eb76b0c529c4b7-30'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cf7734b9d11b1f76718c6ed',
        'name': 'Zik Orangerie',
        'location': {'address': 'Reichenberger Str. 129',
         'lat': 52.49564100033031,
         'lng': 13.430263866337224,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49564100033031,
           'lng': 13.430263866337224}],
         'distance': 285,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reichenberger Str. 129',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cf7734b9d11b1f76718c6ed-31'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5dd14f661169e90007b37a0c',
        'name': 'Tatasbln',
        'location': {'lat': 52.494797,
         'lng': 13.424005,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494797,
           'lng': 13.424005}],
         'distance': 292,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '591013550'}},
       'referralId': 'e-0-5dd14f661169e90007b37a0c-32'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51acc4db498ed0297aab54f3',
        'name': 'Café & Bäckerei am Markt',
        'location': {'address': 'Maybachufer 1',
         'lat': 52.495526207452656,
         'lng': 13.420722134614712,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.495526207452656,
           'lng': 13.420722134614712}],
         'distance': 426,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 1', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51acc4db498ed0297aab54f3-33'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc53c19b0fb5556ccea806f',
        'name': 'Cafecito',
        'location': {'address': 'Maybachufer 21',
         'lat': 52.49363815618353,
         'lng': 13.427331447601318,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49363815618353,
           'lng': 13.427331447601318}],
         'distance': 366,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 21',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc53c19b0fb5556ccea806f-34'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '591ed01c0d8a0f04db16f56d',
        'name': 'Kaffee am Markt',
        'location': {'lat': 52.49548,
         'lng': 13.420904,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49548,
           'lng': 13.420904}],
         'distance': 417,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-591ed01c0d8a0f04db16f56d-35'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4deb4e17e4cdc079f49add8c',
        'name': 'Hertz',
        'location': {'address': 'Paul-Lincke-Ufer 22',
         'lat': 52.49391115621415,
         'lng': 13.428864077198787,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49391115621415,
           'lng': 13.428864077198787}],
         'distance': 366,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Lincke-Ufer 22',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4deb4e17e4cdc079f49add8c-36'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ee0e38bf9ab28df8269bd38',
        'name': 'Hühnerhaus 36',
        'location': {'address': 'Skalitzer Str. 95',
         'crossStreet': 'Lausitzer Platz',
         'lat': 52.499852,
         'lng': 13.432076,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.499852,
           'lng': 13.432076}],
         'distance': 495,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Skalitzer Str. 95 (Lausitzer Platz)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4d4ae6fc7a7b7dea34424761',
          'name': 'Fried Chicken Joint',
          'pluralName': 'Fried Chicken Joints',
          'shortName': 'Fried Chicken',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/friedchicken_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ee0e38bf9ab28df8269bd38-37'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a5209f4521e3',
        'name': 'SO36',
        'location': {'address': 'Oranienstr. 190',
         'crossStreet': 'Heinrichplatz',
         'lat': 52.500010256337525,
         'lng': 13.421936313164833,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500010256337525,
           'lng': 13.421936313164833}],
         'distance': 468,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oranienstr. 190 (Heinrichplatz)',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e5931735',
          'name': 'Music Venue',
          'pluralName': 'Music Venues',
          'shortName': 'Music Venue',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/arts_entertainment/musicvenue_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a5209f4521e3-38'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '509689b6e4b0b6c7185584c6',
        'name': 'Marianna',
        'location': {'address': 'Paul-Lincke-Ufer 45',
         'crossStreet': 'Mariannenstraße',
         'lat': 52.496347566938574,
         'lng': 13.420206230712077,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496347566938574,
           'lng': 13.420206230712077}],
         'distance': 437,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Lincke-Ufer 45 (Mariannenstraße)',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-509689b6e4b0b6c7185584c6-39'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f44dd2fe4b0b5bea4c78858',
        'name': 'Saarbach',
        'location': {'address': 'Sanderstr. 22',
         'crossStreet': 'Hobrechtstr.',
         'lat': 52.49247593873009,
         'lng': 13.425875703648918,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49247593873009,
           'lng': 13.425875703648918}],
         'distance': 494,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sanderstr. 22 (Hobrechtstr.)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f44dd2fe4b0b5bea4c78858-40'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e84bea27a5fc651a3e5'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Dorotheenstadt',
   'headerFullLocation': 'Dorotheenstadt, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.5224000045, 'lng': 13.383281269514978},
    'sw': {'lat': 52.513399995499995, 'lng': 13.368518730485022}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b13e4b9f964a520399a23e3',
        'name': 'Starbucks',
        'location': {'address': 'PARISER PLATZ 4A',
         'lat': 52.51678544918839,
         'lng': 13.379765924719646,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51678544918839,
           'lng': 13.379765924719646}],
         'distance': 289,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['PARISER PLATZ 4A',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b13e4b9f964a520399a23e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c5e92642815c92897f8b767',
        'name': 'Berlin Pavillon',
        'location': {'address': 'Scheidemannstr. 1',
         'lat': 52.517577940532995,
         'lng': 13.373621040462353,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517577940532995,
           'lng': 13.373621040462353}],
         'distance': 158,
         'postalCode': '10557',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Scheidemannstr. 1',
          '10557 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c5e92642815c92897f8b767-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a5208d4521e3',
        'name': 'Café Lebensart',
        'location': {'address': 'Unter den Linden 69 a+b',
         'lat': 52.516444888842784,
         'lng': 13.382149652830892,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516444888842784,
           'lng': 13.382149652830892}],
         'distance': 453,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 69 a+b',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a5208d4521e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '525fc66411d287fa97cde91c',
        'name': 'Coffee To Go',
        'location': {'lat': 52.515303447101,
         'lng': 13.380033470518079,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.515303447101,
           'lng': 13.380033470518079}],
         'distance': 402,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-525fc66411d287fa97cde91c-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d2d9fa4a40da35d27699377',
        'name': 'Bäcker Wiedemann',
        'location': {'address': 'Pariser Platz 4 a',
         'lat': 52.51652239998519,
         'lng': 13.379733622377175,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51652239998519,
           'lng': 13.379733622377175}],
         'distance': 301,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pariser Platz 4 a',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d2d9fa4a40da35d27699377-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e84ebf7ed052682c6d8'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Karl-Marx-Straße',
   'headerFullLocation': 'Karl-Marx-Straße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 19,
   'suggestedBounds': {'ne': {'lat': 52.4844000045, 'lng': 13.444474892658143},
    'sw': {'lat': 52.4753999955, 'lng': 13.42972510734186}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '526b9c4e11d2ef13bf80f997',
        'name': 'Prachtwerk',
        'location': {'address': 'Ganghoferstr. 2',
         'lat': 52.47907980698503,
         'lng': 13.438402686454733,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47907980698503,
           'lng': 13.438402686454733}],
         'distance': 127,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ganghoferstr. 2',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-526b9c4e11d2ef13bf80f997-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57220e63498e421c4572f552',
        'name': 'BICHOU',
        'location': {'address': 'Schönstedtstr. 14',
         'lat': 52.482467242880354,
         'lng': 13.436506649594563,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.482467242880354,
           'lng': 13.436506649594563}],
         'distance': 288,
         'postalCode': '12043',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönstedtstr. 14',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '479874921'}},
       'referralId': 'e-0-57220e63498e421c4572f552-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5217309f498e84315daee9cb',
        'name': 'Café Botanico',
        'location': {'address': 'Richardstr. 100',
         'lat': 52.47731595457574,
         'lng': 13.441248048118089,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47731595457574,
           'lng': 13.441248048118089}],
         'distance': 402,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardstr. 100',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5217309f498e84315daee9cb-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51447b44e4b0ec73205fbe05',
        'name': 'Pêle-Mêle',
        'location': {'address': 'Innstr. 26',
         'lat': 52.479504589221584,
         'lng': 13.441588028737131,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.479504589221584,
           'lng': 13.441588028737131}],
         'distance': 307,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Innstr. 26', '12043 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51447b44e4b0ec73205fbe05-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f9996cde4b03f9bd5691bfc',
        'name': 'k-fetisch',
        'location': {'address': 'Wildenbruchstr. 86',
         'crossStreet': 'Weserstr.',
         'lat': 52.483061135065896,
         'lng': 13.441773605013086,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.483061135065896,
           'lng': 13.441773605013086}],
         'distance': 473,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wildenbruchstr. 86 (Weserstr.)',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f9996cde4b03f9bd5691bfc-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e5948e81495a891127d0965',
        'name': 'Elit Simit',
        'location': {'address': 'Karl-Marx-Str. 109',
         'lat': 52.47860230113104,
         'lng': 13.43765104721109,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47860230113104,
           'lng': 13.43765104721109}],
         'distance': 149,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Marx-Str. 109',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e5948e81495a891127d0965-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b42058a2b274a002cf417f1',
        'name': 'Wilke',
        'location': {'address': 'Boddinstr. 10',
         'crossStreet': 'Isarstr.',
         'lat': 52.48067953612267,
         'lng': 13.431440591812134,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48067953612267,
           'lng': 13.431440591812134}],
         'distance': 393,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Boddinstr. 10 (Isarstr.)',
          '12053 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b42058a2b274a002cf417f1-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54390f1f498e1b6b7d58e99a',
        'name': 'CocoLiebe',
        'location': {'address': 'Richardstr. 107',
         'lat': 52.47808532658116,
         'lng': 13.4394585118915,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47808532658116,
           'lng': 13.4394585118915}],
         'distance': 257,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardstr. 107',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54390f1f498e1b6b7d58e99a-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5038bae6e4b0218ac2120161',
        'name': 'Café Ole',
        'location': {'address': 'Boddinstr. 57',
         'lat': 52.48061113156666,
         'lng': 13.431551190451929,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48061113156666,
           'lng': 13.431551190451929}],
         'distance': 384,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Boddinstr. 57', '12053 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5038bae6e4b0218ac2120161-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b59be3dacb00b0039966cb3',
        'name': 'Companion Tea & Coffee',
        'location': {'address': 'Weserstraße 166',
         'lat': 52.48331723887731,
         'lng': 13.441134981212718,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48331723887731,
           'lng': 13.441134981212718}],
         'distance': 468,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße 166', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b59be3dacb00b0039966cb3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59f9baea8c812a14a8bf4ad7',
        'name': 'Holy Coffee',
        'location': {'address': 'Sonnenallee 132',
         'crossStreet': 'Geygerstr.',
         'lat': 52.479833459184675,
         'lng': 13.443649838260455,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.479833459184675,
           'lng': 13.443649838260455}],
         'distance': 444,
         'postalCode': '12059',
         'cc': 'DE',
         'neighborhood': 'Neukölln',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sonnenallee 132 (Geygerstr.)',
          '12059 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59f9baea8c812a14a8bf4ad7-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a5200a4621e3',
        'name': 'Café Rix',
        'location': {'address': 'Karl-Marx-Str. 141',
         'lat': 52.47696,
         'lng': 13.439365,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47696,
           'lng': 13.439365}],
         'distance': 361,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Marx-Str. 141',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a5200a4621e3-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59201c428c35dc7bbd1b3f82',
        'name': 'Mimosa',
        'location': {'address': 'Richardstr.',
         'crossStreet': 'Berthelsdorfer Str.',
         'lat': 52.477522,
         'lng': 13.440479,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.477522,
           'lng': 13.440479}],
         'distance': 350,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardstr. (Berthelsdorfer Str.)',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59201c428c35dc7bbd1b3f82-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bdee8fada7080002c63c25d',
        'name': 'Cafe Babette',
        'location': {'address': 'Am Sudhaus 3',
         'lat': 52.479363,
         'lng': 13.43121,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.479363,
           'lng': 13.43121}],
         'distance': 403,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Sudhaus 3', '12053 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5bdee8fada7080002c63c25d-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bc0a2792619ee002c2542e9',
        'name': 'VENUE Restaurant',
        'location': {'address': 'Weserstraße 172',
         'lat': 52.484062,
         'lng': 13.439475,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.484062,
           'lng': 13.439475}],
         'distance': 490,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße 172',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5bc0a2792619ee002c2542e9-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5550c8a1498ea4ff673951ff',
        'name': 'WOLF',
        'location': {'address': 'Weserstraße 59',
         'lat': 52.48290035056045,
         'lng': 13.441838727774554,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48290035056045,
           'lng': 13.441838727774554}],
         'distance': 463,
         'postalCode': '12045',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße 59',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d17f941735',
          'name': 'Movie Theater',
          'pluralName': 'Movie Theaters',
          'shortName': 'Movie Theater',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/arts_entertainment/movietheater_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5550c8a1498ea4ff673951ff-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53484a7111d2a904ff37ee82',
        'name': 'Twinpigs',
        'location': {'address': 'Boddinstr. 57a',
         'crossStreet': 'Isarstr.',
         'lat': 52.4805332030826,
         'lng': 13.43186175232404,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4805332030826,
           'lng': 13.43186175232404}],
         'distance': 362,
         'postalCode': '12057',
         'cc': 'DE',
         'neighborhood': 'Neukölln, Berlin',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Boddinstr. 57a (Isarstr.)',
          '12057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d11e941735',
          'name': 'Cocktail Bar',
          'pluralName': 'Cocktail Bars',
          'shortName': 'Cocktail',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/nightlife/cocktails_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '126342569'}},
       'referralId': 'e-0-53484a7111d2a904ff37ee82-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59ed9bdc31fd141cd4c78092',
        'name': "Gregory's",
        'location': {'address': 'Karl-Marx-Str. 66',
         'lat': 52.482057,
         'lng': 13.432887,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.482057,
           'lng': 13.432887}],
         'distance': 373,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Marx-Str. 66', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59ed9bdc31fd141cd4c78092-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4df24fb0ae609e69dd952439',
        'name': 'Eis Café Tiziano',
        'location': {'address': 'Karl-Marx-Str. 66',
         'lat': 52.48207455960175,
         'lng': 13.4328031539917,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48207455960175,
           'lng': 13.4328031539917}],
         'distance': 378,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Marx-Str. 66',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4df24fb0ae609e69dd952439-18'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e853e071546b3ae951c'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Reuterkiez',
   'headerFullLocation': 'Reuterkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 15,
   'suggestedBounds': {'ne': {'lat': 52.490000004500004,
     'lng': 13.446575831509362},
    'sw': {'lat': 52.4809999955, 'lng': 13.431824168490637}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f9996cde4b03f9bd5691bfc',
        'name': 'k-fetisch',
        'location': {'address': 'Wildenbruchstr. 86',
         'crossStreet': 'Weserstr.',
         'lat': 52.483061135065896,
         'lng': 13.441773605013086,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.483061135065896,
           'lng': 13.441773605013086}],
         'distance': 322,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wildenbruchstr. 86 (Weserstr.)',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f9996cde4b03f9bd5691bfc-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57220e63498e421c4572f552',
        'name': 'BICHOU',
        'location': {'address': 'Schönstedtstr. 14',
         'lat': 52.482467242880354,
         'lng': 13.436506649594563,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.482467242880354,
           'lng': 13.436506649594563}],
         'distance': 383,
         'postalCode': '12043',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönstedtstr. 14',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '479874921'}},
       'referralId': 'e-0-57220e63498e421c4572f552-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b17fdfff964a52003cb23e3',
        'name': 'Zimt & Mehl Manufaktur',
        'location': {'address': 'Weigandufer 16',
         'lat': 52.48473361104862,
         'lng': 13.44414627157973,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48473361104862,
           'lng': 13.44414627157973}],
         'distance': 345,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weigandufer 16',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b17fdfff964a52003cb23e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5172aa01e4b0ffeb8bde5a59',
        'name': 'Missis Miller',
        'location': {'address': 'Weichselstr. 35',
         'lat': 52.488730133840875,
         'lng': 13.439044970689638,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.488730133840875,
           'lng': 13.439044970689638}],
         'distance': 359,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weichselstr. 35',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5172aa01e4b0ffeb8bde5a59-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '594fce081bc70421e14376c2',
        'name': 'hom',
        'location': {'address': 'Wildenbruchplatz 5',
         'lat': 52.483472,
         'lng': 13.444547,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.483472,
           'lng': 13.444547}],
         'distance': 427,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wildenbruchplatz 5',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-594fce081bc70421e14376c2-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b200090f964a520fb2b24e3',
        'name': 'Broschek',
        'location': {'address': 'Weichselstr. 6',
         'lat': 52.48415184245284,
         'lng': 13.432774434116919,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48415184245284,
           'lng': 13.432774434116919}],
         'distance': 460,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weichselstr. 6',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b200090f964a520fb2b24e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b59be3dacb00b0039966cb3',
        'name': 'Companion Tea & Coffee',
        'location': {'address': 'Weserstraße 166',
         'lat': 52.48331723887731,
         'lng': 13.441134981212718,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48331723887731,
           'lng': 13.441134981212718}],
         'distance': 276,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße 166', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b59be3dacb00b0039966cb3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54fc4bbb498eb438259ae48e',
        'name': 'Dots',
        'location': {'address': 'Weserstr. 191',
         'lat': 52.486378631227396,
         'lng': 13.434567644415887,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486378631227396,
           'lng': 13.434567644415887}],
         'distance': 328,
         'postalCode': '10245',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstr. 191', '10245 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54fc4bbb498eb438259ae48e-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bc0a2792619ee002c2542e9',
        'name': 'VENUE Restaurant',
        'location': {'address': 'Weserstraße 172',
         'lat': 52.484062,
         'lng': 13.439475,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.484062,
           'lng': 13.439475}],
         'distance': 161,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße 172',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5bc0a2792619ee002c2542e9-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd1b7a941b9ef3be764fce5',
        'name': 'Erika und Hilde',
        'location': {'address': 'Weigandufer 9',
         'crossStreet': 'Elbestraße',
         'lat': 52.48579327912002,
         'lng': 13.44217564392462,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48579327912002,
           'lng': 13.44217564392462}],
         'distance': 204,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weigandufer 9 (Elbestraße)',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd1b7a941b9ef3be764fce5-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6bfc541fb2a143fd23fae6',
        'name': 'Rudimarie',
        'location': {'address': 'Weichselstr. 34',
         'lat': 52.48894669630567,
         'lng': 13.438977133841703,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48894669630567,
           'lng': 13.438977133841703}],
         'distance': 383,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weichselstr. 34',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6bfc541fb2a143fd23fae6-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5586978f498e73208c016a1b',
        'name': 'Nah am Wasser gebaut',
        'location': {'address': 'Kiehlufer 55',
         'crossStreet': 'Wildenbruchstr.',
         'lat': 52.48507856017328,
         'lng': 13.444732081179938,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48507856017328,
           'lng': 13.444732081179938}],
         'distance': 377,
         'postalCode': '12059',
         'cc': 'DE',
         'neighborhood': 'Neukölln',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kiehlufer 55 (Wildenbruchstr.)',
          '12059 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d143941735',
          'name': 'Breakfast Spot',
          'pluralName': 'Breakfast Spots',
          'shortName': 'Breakfast',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/breakfast_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5586978f498e73208c016a1b-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5550c8a1498ea4ff673951ff',
        'name': 'WOLF',
        'location': {'address': 'Weserstraße 59',
         'lat': 52.48290035056045,
         'lng': 13.441838727774554,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48290035056045,
           'lng': 13.441838727774554}],
         'distance': 340,
         'postalCode': '12045',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße 59',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d17f941735',
          'name': 'Movie Theater',
          'pluralName': 'Movie Theaters',
          'shortName': 'Movie Theater',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/arts_entertainment/movietheater_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5550c8a1498ea4ff673951ff-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5db44ed1d628da00083a6949',
        'name': 'Greens Café',
        'location': {'address': 'Weserst. 44',
         'lat': 52.484573,
         'lng': 13.4380245,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.484573,
           'lng': 13.4380245}],
         'distance': 130,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserst. 44', '12045 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5db44ed1d628da00083a6949-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f425ad6e4b0c868df7fcc9c',
        'name': 'Shio',
        'location': {'address': 'Weichselstr. 59',
         'lat': 52.485107525339885,
         'lng': 13.43369566431051,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.485107525339885,
           'lng': 13.43369566431051}],
         'distance': 375,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weichselstr. 59',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '43126053'}},
       'referralId': 'e-0-4f425ad6e4b0c868df7fcc9c-14'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8515cbfb5134f1c14e'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Reuterkiez',
   'headerFullLocation': 'Reuterkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 42,
   'suggestedBounds': {'ne': {'lat': 52.4950000045, 'lng': 13.43587667003095},
    'sw': {'lat': 52.485999995499995, 'lng': 13.421123329969049}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5762cb90498e3b6a9247ed37',
        'name': 'bRICK',
        'location': {'address': 'Lenaustr. 1',
         'crossStreet': 'Kottbusser Damm',
         'lat': 52.489939,
         'lng': 13.424577,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.489939,
           'lng': 13.424577}],
         'distance': 273,
         'postalCode': '12047',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lenaustr. 1 (Kottbusser Damm)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '459649104'}},
       'referralId': 'e-0-5762cb90498e3b6a9247ed37-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e218c97b61cdcf1ecbe46d8',
        'name': 'Myxa Café',
        'location': {'address': 'Lenaustr. 22',
         'lat': 52.49019903713692,
         'lng': 13.42674436161043,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49019903713692,
           'lng': 13.42674436161043}],
         'distance': 123,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lenaustr. 22', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '33403108'}},
       'referralId': 'e-0-4e218c97b61cdcf1ecbe46d8-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ff9bdc9e4b0956dd6304cfe',
        'name': 'Tischendorf',
        'location': {'address': 'Friedelstr. 25',
         'lat': 52.49206917265938,
         'lng': 13.427981954066674,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49206917265938,
           'lng': 13.427981954066674}],
         'distance': 178,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 25',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ff9bdc9e4b0956dd6304cfe-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56c859ce498e4246a80cdaf0',
        'name': 'Populus Coffee',
        'location': {'address': 'Maybachufer 20',
         'crossStreet': 'Bürknerstr.',
         'lat': 52.493718,
         'lng': 13.427157,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493718,
           'lng': 13.427157}],
         'distance': 369,
         'postalCode': '12045',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 20 (Bürknerstr.)',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '559162275'}},
       'referralId': 'e-0-56c859ce498e4246a80cdaf0-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51bdadb3498e8d6f8080f1a7',
        'name': 'Barettino',
        'location': {'address': 'Reuterstraße 59',
         'crossStreet': 'Weserstraße',
         'lat': 52.487862271811025,
         'lng': 13.429088563777132,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.487862271811025,
           'lng': 13.429088563777132}],
         'distance': 296,
         'postalCode': '12047',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reuterstraße 59 (Weserstraße)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51bdadb3498e8d6f8080f1a7-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e538befcb604100083c7508',
        'name': 'Kitten',
        'location': {'address': 'Friedelstr. 30',
         'lat': 52.492876,
         'lng': 13.428354,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.492876,
           'lng': 13.428354}],
         'distance': 264,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 30',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e538befcb604100083c7508-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '539368bc498e7b5d5b8b4fd7',
        'name': 'IL KINO',
        'location': {'address': 'Nansenstr. 22',
         'crossStreet': 'Maybachufer',
         'lat': 52.49163582724672,
         'lng': 13.432972976382707,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49163582724672,
           'lng': 13.432972976382707}],
         'distance': 328,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Nansenstr. 22 (Maybachufer)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d17e941735',
          'name': 'Indie Movie Theater',
          'pluralName': 'Indie Movie Theaters',
          'shortName': 'Indie Movies',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/arts_entertainment/movietheater_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-539368bc498e7b5d5b8b4fd7-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '514efa17e4b0fff03703923f',
        'name': "café a'lu",
        'location': {'address': 'Nansenstr. 3',
         'crossStreet': 'Reuterplatz',
         'lat': 52.48857170941257,
         'lng': 13.429831278594518,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48857170941257,
           'lng': 13.429831278594518}],
         'distance': 232,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Nansenstr. 3 (Reuterplatz)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-514efa17e4b0fff03703923f-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c332f30213c2d7fee7a365d',
        'name': 'La Femme',
        'location': {'address': 'Kottbusser Damm 77',
         'crossStreet': 'Pflügerstr.',
         'lat': 52.490939737012106,
         'lng': 13.423513063950589,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490939737012106,
           'lng': 13.423513063950589}],
         'distance': 341,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kottbusser Damm 77 (Pflügerstr.)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c332f30213c2d7fee7a365d-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dd276db6365cd4836e36195',
        'name': "Katie's Blue Cat",
        'location': {'address': 'Friedelstr. 31',
         'lat': 52.49297512815172,
         'lng': 13.428254127502441,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49297512815172,
           'lng': 13.428254127502441}],
         'distance': 276,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 31',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dd276db6365cd4836e36195-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eb28819f9f43874814e80fe',
        'name': "Bully's Bakery",
        'location': {'address': 'Friedelstr. 7',
         'crossStreet': 'Weserstr.',
         'lat': 52.48832692687704,
         'lng': 13.428114602491275,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48832692687704,
           'lng': 13.428114602491275}],
         'distance': 243,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 7 (Weserstr.)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '77920829'}},
       'referralId': 'e-0-4eb28819f9f43874814e80fe-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eb7cd1bdab4fe5112a1cc84',
        'name': 'Çarik Kuruyemiş',
        'location': {'address': 'Kottbusser Damm 73',
         'lat': 52.49032141767238,
         'lng': 13.42396150929606,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49032141767238,
           'lng': 13.42396150929606}],
         'distance': 308,
         'postalCode': '10967',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kottbusser Damm 73',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eb7cd1bdab4fe5112a1cc84-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fb11c2de4b0b84e1d8a20f0',
        'name': 'Baklavacı Şengüloğlu',
        'location': {'address': 'Kottbusser Damm 32',
         'lat': 52.489023961462884,
         'lng': 13.424523102617481,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.489023961462884,
           'lng': 13.424523102617481}],
         'distance': 315,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kottbusser Damm 32',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fb11c2de4b0b84e1d8a20f0-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53a6af42498e192ea71767d8',
        'name': 'Ein Laden',
        'location': {'address': 'Weserstraße',
         'lat': 52.48812940186354,
         'lng': 13.42969758345258,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48812940186354,
           'lng': 13.42969758345258}],
         'distance': 276,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53a6af42498e192ea71767d8-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50cdf709e4b046175cc99d86',
        'name': 'two and two',
        'location': {'address': 'Pannierstr. 6',
         'lat': 52.48671275741426,
         'lng': 13.430849898498758,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48671275741426,
           'lng': 13.430849898498758}],
         'distance': 450,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pannierstr. 6', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50cdf709e4b046175cc99d86-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56f66920498e940834a0bb86',
        'name': 'Okay Café',
        'location': {'address': 'Pflügerstr. 68',
         'lat': 52.491497,
         'lng': 13.428382,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.491497,
           'lng': 13.428382}],
         'distance': 111,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pflügerstr. 68',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56f66920498e940834a0bb86-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bb5f4f7ef159c74a63575f7',
        'name': 'Martins Place Kuchenmanufaktur',
        'location': {'address': 'Pannierstr. 29',
         'lat': 52.49073890137717,
         'lng': 13.43471214770882,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49073890137717,
           'lng': 13.43471214770882}],
         'distance': 421,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pannierstr. 29',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bb5f4f7ef159c74a63575f7-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6abee81a6620a17cdb668c',
        'name': 'Café Jacques',
        'location': {'address': 'Maybachufer 14',
         'crossStreet': 'Hobrechtstrasse',
         'lat': 52.49416461128441,
         'lng': 13.425378799438477,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49416461128441,
           'lng': 13.425378799438477}],
         'distance': 459,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 14 (Hobrechtstrasse)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6abee81a6620a17cdb668c-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eb51ef44901cef9d861dd68',
        'name': 'Weincafe Wanderbühne',
        'location': {'lat': 52.49276617937026,
         'lng': 13.427946149616323,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49276617937026,
           'lng': 13.427946149616323}],
         'distance': 255,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eb51ef44901cef9d861dd68-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52a4824811d25cafc065cb21',
        'name': 'Café Katulki',
        'location': {'address': 'Friedelstr. 40',
         'lat': 52.491855,
         'lng': 13.427637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.491855,
           'lng': 13.427637}],
         'distance': 161,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 40',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52a4824811d25cafc065cb21-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '550ea3ba498e7aa1df5ddbdd',
        'name': 'Espresso Sin Fronteras',
        'location': {'address': 'Maybachufer 21',
         'lat': 52.493724553821195,
         'lng': 13.427544146058958,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493724553821195,
           'lng': 13.427544146058958}],
         'distance': 364,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 21', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-550ea3ba498e7aa1df5ddbdd-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b1e717df964a520051a24e3',
        'name': 'Cafe Futuro',
        'location': {'address': 'Pannierstr. 12',
         'lat': 52.487957422581935,
         'lng': 13.432049486195481,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.487957422581935,
           'lng': 13.432049486195481}],
         'distance': 371,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pannierstr. 12',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '56515887'}},
       'referralId': 'e-0-4b1e717df964a520051a24e3-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b028c31f964a520e64822e3',
        'name': 'Goldberg',
        'location': {'address': 'Reuterstr. 40',
         'lat': 52.49125694584663,
         'lng': 13.429297310406342,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49125694584663,
           'lng': 13.429297310406342}],
         'distance': 100,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reuterstr. 40', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b028c31f964a520e64822e3-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5618df7d498e89360d919fc6',
        'name': 'CAMON Coffee',
        'location': {'address': 'Sonnenallee 27',
         'lat': 52.486457277525204,
         'lng': 13.429397444207641,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486457277525204,
           'lng': 13.429397444207641}],
         'distance': 454,
         'postalCode': '12047',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sonnenallee 27',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5618df7d498e89360d919fc6-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c0787252e80a59391b275f9',
        'name': 'Croissanterie',
        'location': {'address': 'Pannierstr. 56',
         'lat': 52.48705720273476,
         'lng': 13.43113812508318,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48705720273476,
           'lng': 13.43113812508318}],
         'distance': 422,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pannierstr. 56',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c0787252e80a59391b275f9-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b06792df964a52021ec22e3',
        'name': 'Brezel Company',
        'location': {'address': 'Lenaustr. 10',
         'crossStreet': 'Friedelstr.',
         'lat': 52.49019443302381,
         'lng': 13.42755923211167,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49019443302381,
           'lng': 13.42755923211167}],
         'distance': 72,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lenaustr. 10 (Friedelstr.)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b06792df964a52021ec22e3-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5831956f9b615c4920ffeb19',
        'name': 'Kreuz Kaffee',
        'location': {'address': 'Ohlauer Straße 41',
         'lat': 52.494430339403344,
         'lng': 13.42912644724232,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494430339403344,
           'lng': 13.42912644724232}],
         'distance': 439,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ohlauer Straße 41',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5831956f9b615c4920ffeb19-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c3847f1ae2da593c46700c6',
        'name': 'Klötze und Schinken',
        'location': {'address': 'Bürknerstr. 12',
         'lat': 52.4930361858127,
         'lng': 13.422799587639616,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4930361858127,
           'lng': 13.422799587639616}],
         'distance': 478,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bürknerstr. 12',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c3847f1ae2da593c46700c6-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d944ed058caa1430254a725',
        'name': 'Schaumschläger',
        'location': {'address': 'Hobrechtstr. 11',
         'lat': 52.48751209477546,
         'lng': 13.426497948588214,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48751209477546,
           'lng': 13.426497948588214}],
         'distance': 359,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hobrechtstr. 11',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d944ed058caa1430254a725-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50cc47e5e4b0fb9326d31540',
        'name': 'Le Johann Rose Café',
        'location': {'address': 'Pannierstr. 41',
         'lat': 52.48992876585931,
         'lng': 13.433736726349556,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48992876585931,
           'lng': 13.433736726349556}],
         'distance': 360,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pannierstr. 41',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50cc47e5e4b0fb9326d31540-29'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b580442f964a520b44828e3',
        'name': 'Café Bäckerei Süss',
        'location': {'address': 'Sonnenallee 5',
         'crossStreet': 'Hermannplatz',
         'lat': 52.48785837118523,
         'lng': 13.425840139389038,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48785837118523,
           'lng': 13.425840139389038}],
         'distance': 344,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sonnenallee 5 (Hermannplatz)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b580442f964a520b44828e3-30'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f784c99e4b06ff836f85b6b',
        'name': 'Grünstich',
        'location': {'address': 'Reuterstr. 36',
         'lat': 52.490328,
         'lng': 13.42894,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490328,
           'lng': 13.42894}],
         'distance': 35,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reuterstr. 36', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f784c99e4b06ff836f85b6b-31'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dd12f7e183899ddfb15d844',
        'name': 'Karstadt Restaurant Café',
        'location': {'address': 'Hermannplatz',
         'lat': 52.48712446,
         'lng': 13.42419821,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48712446,
           'lng': 13.42419821}],
         'distance': 475,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermannplatz', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '552572514'}},
       'referralId': 'e-0-4dd12f7e183899ddfb15d844-32'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56261e56498e3d52ca96ddbf',
        'name': 'Rooftop Refugio',
        'location': {'address': 'Lenau Str 4',
         'lat': 52.489951,
         'lng': 13.425285,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.489951,
           'lng': 13.425285}],
         'distance': 226,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lenau Str 4', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56261e56498e3d52ca96ddbf-33'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc53c19b0fb5556ccea806f',
        'name': 'Cafecito',
        'location': {'address': 'Maybachufer 21',
         'lat': 52.49363815618353,
         'lng': 13.427331447601318,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49363815618353,
           'lng': 13.427331447601318}],
         'distance': 358,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 21',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc53c19b0fb5556ccea806f-34'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ba55d47f964a52080ff38e3',
        'name': 'Cafe Warschau',
        'location': {'address': 'Sonnenallee 27',
         'lat': 52.486483482849714,
         'lng': 13.429263803145126,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486483482849714,
           'lng': 13.429263803145126}],
         'distance': 450,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sonnenallee 27', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d116941735',
          'name': 'Bar',
          'pluralName': 'Bars',
          'shortName': 'Bar',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/nightlife/pub_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ba55d47f964a52080ff38e3-35'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4deb4e17e4cdc079f49add8c',
        'name': 'Hertz',
        'location': {'address': 'Paul-Lincke-Ufer 22',
         'lat': 52.49391115621415,
         'lng': 13.428864077198787,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49391115621415,
           'lng': 13.428864077198787}],
         'distance': 380,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Lincke-Ufer 22',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4deb4e17e4cdc079f49add8c-36'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '538b3992498ef93b52fc0380',
        'name': 'Musikcafé Fili',
        'location': {'lat': 52.48634040648107,
         'lng': 13.430735410442608,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48634040648107,
           'lng': 13.430735410442608}],
         'distance': 487,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-538b3992498ef93b52fc0380-37'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f44dd2fe4b0b5bea4c78858',
        'name': 'Saarbach',
        'location': {'address': 'Sanderstr. 22',
         'crossStreet': 'Hobrechtstr.',
         'lat': 52.49247593873009,
         'lng': 13.425875703648918,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49247593873009,
           'lng': 13.425875703648918}],
         'distance': 282,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sanderstr. 22 (Hobrechtstr.)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f44dd2fe4b0b5bea4c78858-38'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ae774f1f964a5207dab21e3',
        'name': "McDonald's",
        'location': {'address': 'Hermannplatz 2 - 3',
         'lat': 52.48676154492607,
         'lng': 13.42455822930162,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48676154492607,
           'lng': 13.42455822930162}],
         'distance': 494,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermannplatz 2 - 3',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ae774f1f964a5207dab21e3-39'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e865111134f6bbaa83b'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schillerkiez',
   'headerFullLocation': 'Schillerkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 14,
   'suggestedBounds': {'ne': {'lat': 52.4809000045, 'lng': 13.429374306033262},
    'sw': {'lat': 52.471899995499996, 'lng': 13.41462569396674}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53a6ef81498e56d9917b270b',
        'name': 'Lux',
        'location': {'address': 'Herfurthstr. 9',
         'lat': 52.47722553179799,
         'lng': 13.423214181094338,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47722553179799,
           'lng': 13.423214181094338}],
         'distance': 123,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Herfurthstr. 9',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53a6ef81498e56d9917b270b-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '514e2368e4b03aaaf1b5055c',
        'name': 'La Pecora Nera',
        'location': {'address': 'Herrfurthplatz 6',
         'lat': 52.477266,
         'lng': 13.421193,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.477266,
           'lng': 13.421193}],
         'distance': 110,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Herrfurthplatz 6',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-514e2368e4b03aaaf1b5055c-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4db425f74df05e5aaad991bd',
        'name': 'Engels',
        'location': {'address': 'Herrfurthstr. 21',
         'lat': 52.47685558735277,
         'lng': 13.420034114335865,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47685558735277,
           'lng': 13.420034114335865}],
         'distance': 142,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Herrfurthstr. 21',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4db425f74df05e5aaad991bd-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5960ae4bf00a706a94bf587b',
        'name': 'm|a',
        'location': {'address': 'Kienitzer Strasse',
         'lat': 52.475971,
         'lng': 13.426299,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.475971,
           'lng': 13.426299}],
         'distance': 295,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kienitzer Strasse', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5960ae4bf00a706a94bf587b-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d850d478de9721ef0c33e51',
        'name': 'Frollein Langner',
        'location': {'address': 'Weisestr. 34',
         'crossStreet': 'Okerstr.',
         'lat': 52.47401134769074,
         'lng': 13.425077545416812,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47401134769074,
           'lng': 13.425077545416812}],
         'distance': 338,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weisestr. 34 (Okerstr.)',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '445548475'}},
       'referralId': 'e-0-4d850d478de9721ef0c33e51-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4df9bfb5d4c064db03a9ff3b',
        'name': 'Pappelreihe Cafe',
        'location': {'address': 'Kienitzer Str. 109',
         'crossStreet': 'Weisestr.',
         'lat': 52.47576168894994,
         'lng': 13.423618495419756,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47576168894994,
           'lng': 13.423618495419756}],
         'distance': 130,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kienitzer Str. 109 (Weisestr.)',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4df9bfb5d4c064db03a9ff3b-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59d8eb62a8eb606df9d2e5e7',
        'name': 'Mahlo Brunch Bar',
        'location': {'address': '32 Mahlower Strasse',
         'lat': 52.48002419121935,
         'lng': 13.424925568583536,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48002419121935,
           'lng': 13.424925568583536}],
         'distance': 449,
         'postalCode': '12049',
         'cc': 'DE',
         'neighborhood': 'Schillerkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['32 Mahlower Strasse',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59d8eb62a8eb606df9d2e5e7-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52d2bd6e498eba87f31b8200',
        'name': 'Aviatrix',
        'location': {'address': 'Herrfurthstr. 13',
         'lat': 52.47687190463942,
         'lng': 13.419886865809024,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47687190463942,
           'lng': 13.419886865809024}],
         'distance': 152,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Herrfurthstr. 13',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52d2bd6e498eba87f31b8200-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '579c577a498e2db2e1537e08',
        'name': 'Isla Coffee Berlin',
        'location': {'address': 'Hermannstr. 37',
         'lat': 52.48033594219699,
         'lng': 13.425168639130929,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48033594219699,
           'lng': 13.425168639130929}],
         'distance': 487,
         'postalCode': '12049',
         'cc': 'DE',
         'neighborhood': 'Schillerkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermannstr. 37',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-579c577a498e2db2e1537e08-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5205fe8111d2ad7f336a03e7',
        'name': 'Café Kanel',
        'location': {'address': 'Schillerpromenade 25',
         'lat': 52.473605853002816,
         'lng': 13.423257604739817,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.473605853002816,
           'lng': 13.423257604739817}],
         'distance': 322,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schillerpromenade 25',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5205fe8111d2ad7f336a03e7-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5208b69f11d2a646c71dfacb',
        'name': 'Caramina',
        'location': {'address': 'Herrfurthstr 10',
         'lat': 52.47697901922109,
         'lng': 13.420918319913316,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47697901922109,
           'lng': 13.420918319913316}],
         'distance': 97,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Herrfurthstr 10',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5208b69f11d2a646c71dfacb-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55d9c736498e2156fdb274f8',
        'name': 'Le Renard',
        'location': {'lat': 52.47748056706405,
         'lng': 13.422056008046786,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47748056706405,
           'lng': 13.422056008046786}],
         'distance': 120,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55d9c736498e2156fdb274f8-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e2d8fc1f51f800008e5c5a6',
        'name': 'Kaffeeraum Zazza Roastery',
        'location': {'lat': 52.477303,
         'lng': 13.423698,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.477303,
           'lng': 13.423698}],
         'distance': 152,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['12049 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e2d8fc1f51f800008e5c5a6-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50c7144ce4b010a7bb1d9648',
        'name': 'Feed Café',
        'location': {'address': 'Weisestr 49',
         'lat': 52.476698196533526,
         'lng': 13.424124975869193,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.476698196533526,
           'lng': 13.424124975869193}],
         'distance': 147,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weisestr 49', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50c7144ce4b010a7bb1d9648-13'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e86a5421e17cce96ef9'},
  'response': {'headerLocation': 'Schillerkiez',
   'headerFullLocation': 'Schillerkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 6,
   'suggestedBounds': {'ne': {'lat': 52.471400004500005,
     'lng': 13.437172714374714},
    'sw': {'lat': 52.4623999955, 'lng': 13.422427285625286}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e1333b7814d60ce660627e1',
        'name': 'leuchtstoff - Kaffeebar',
        'location': {'address': 'Siegfriedstr. 19',
         'lat': 52.46806531750529,
         'lng': 13.432528064706222,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46806531750529,
           'lng': 13.432528064706222}],
         'distance': 225,
         'postalCode': '12051',
         'cc': 'DE',
         'neighborhood': 'Neukölln',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Siegfriedstr. 19',
          '12051 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '45166827'}},
       'referralId': 'e-0-4e1333b7814d60ce660627e1-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50fc4395e4b084af5edb832e',
        'name': 'Loislane',
        'location': {'address': 'Emser Str. 41',
         'lat': 52.46838972518222,
         'lng': 13.429575297576891,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46838972518222,
           'lng': 13.429575297576891}],
         'distance': 166,
         'postalCode': '12051',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Emser Str. 41', '12051 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50fc4395e4b084af5edb832e-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d3b36d7325ff04d76ff2345',
        'name': 'Fincan Kulturcafé',
        'location': {'address': 'Altenbrakerstr. 26',
         'crossStreet': 'Nogatstr',
         'lat': 52.46927,
         'lng': 13.43249,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46927,
           'lng': 13.43249}],
         'distance': 320,
         'postalCode': '12051',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Altenbrakerstr. 26 (Nogatstr)',
          '12051 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d3b36d7325ff04d76ff2345-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d570fe5611aa35dcc514939',
        'name': 'Ungeheuer Neukölln',
        'location': {'address': 'Emser Str. 23',
         'lat': 52.4690381331751,
         'lng': 13.434946875189306,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4690381331751,
           'lng': 13.434946875189306}],
         'distance': 422,
         'postalCode': '12051',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Emser Str. 23', '12051 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d570fe5611aa35dcc514939-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5541cf0b498e6fb1ed95f579',
        'name': 'Roasters',
        'location': {'address': 'Hermannstr. 176',
         'lat': 52.47132384422504,
         'lng': 13.429312184717693,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47132384422504,
           'lng': 13.429312184717693}],
         'distance': 493,
         'postalCode': '12051',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermannstr. 176',
          '12051 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5541cf0b498e6fb1ed95f579-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e87d859ad1d9fdeb490'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Neukölln',
   'headerFullLocation': 'Neukölln, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 9,
   'suggestedBounds': {'ne': {'lat': 52.4813000045, 'lng': 13.439874373069987},
    'sw': {'lat': 52.472299995499995, 'lng': 13.425125626930011}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '526b9c4e11d2ef13bf80f997',
        'name': 'Prachtwerk',
        'location': {'address': 'Ganghoferstr. 2',
         'lat': 52.47907980698503,
         'lng': 13.438402686454733,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47907980698503,
           'lng': 13.438402686454733}],
         'distance': 473,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ganghoferstr. 2',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-526b9c4e11d2ef13bf80f997-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5960ae4bf00a706a94bf587b',
        'name': 'm|a',
        'location': {'address': 'Kienitzer Strasse',
         'lat': 52.475971,
         'lng': 13.426299,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.475971,
           'lng': 13.426299}],
         'distance': 430,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kienitzer Strasse', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5960ae4bf00a706a94bf587b-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b42058a2b274a002cf417f1',
        'name': 'Wilke',
        'location': {'address': 'Boddinstr. 10',
         'crossStreet': 'Isarstr.',
         'lat': 52.48067953612267,
         'lng': 13.431440591812134,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48067953612267,
           'lng': 13.431440591812134}],
         'distance': 437,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Boddinstr. 10 (Isarstr.)',
          '12053 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b42058a2b274a002cf417f1-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e5948e81495a891127d0965',
        'name': 'Elit Simit',
        'location': {'address': 'Karl-Marx-Str. 109',
         'lat': 52.47860230113104,
         'lng': 13.43765104721109,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47860230113104,
           'lng': 13.43765104721109}],
         'distance': 402,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Marx-Str. 109',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e5948e81495a891127d0965-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5038bae6e4b0218ac2120161',
        'name': 'Café Ole',
        'location': {'address': 'Boddinstr. 57',
         'lat': 52.48061113156666,
         'lng': 13.431551190451929,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48061113156666,
           'lng': 13.431551190451929}],
         'distance': 429,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Boddinstr. 57', '12053 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5038bae6e4b0218ac2120161-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54390f1f498e1b6b7d58e99a',
        'name': 'CocoLiebe',
        'location': {'address': 'Richardstr. 107',
         'lat': 52.47808532658116,
         'lng': 13.4394585118915,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47808532658116,
           'lng': 13.4394585118915}],
         'distance': 493,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardstr. 107',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54390f1f498e1b6b7d58e99a-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bdee8fada7080002c63c25d',
        'name': 'Cafe Babette',
        'location': {'address': 'Am Sudhaus 3',
         'lat': 52.479363,
         'lng': 13.43121,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.479363,
           'lng': 13.43121}],
         'distance': 298,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Sudhaus 3', '12053 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5bdee8fada7080002c63c25d-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a5200a4621e3',
        'name': 'Café Rix',
        'location': {'address': 'Karl-Marx-Str. 141',
         'lat': 52.47696,
         'lng': 13.439365,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47696,
           'lng': 13.439365}],
         'distance': 465,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Marx-Str. 141',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a5200a4621e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53484a7111d2a904ff37ee82',
        'name': 'Twinpigs',
        'location': {'address': 'Boddinstr. 57a',
         'crossStreet': 'Isarstr.',
         'lat': 52.4805332030826,
         'lng': 13.43186175232404,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4805332030826,
           'lng': 13.43186175232404}],
         'distance': 417,
         'postalCode': '12057',
         'cc': 'DE',
         'neighborhood': 'Neukölln, Berlin',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Boddinstr. 57a (Isarstr.)',
          '12057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d11e941735',
          'name': 'Cocktail Bar',
          'pluralName': 'Cocktail Bars',
          'shortName': 'Cocktail',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/nightlife/cocktails_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '126342569'}},
       'referralId': 'e-0-53484a7111d2a904ff37ee82-8'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e872158a34dc840b177'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Böhmisches Dorf',
   'headerFullLocation': 'Böhmisches Dorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 9,
   'suggestedBounds': {'ne': {'lat': 52.475700004500005,
     'lng': 13.455973434699402},
    'sw': {'lat': 52.4666999955, 'lng': 13.4412265653006}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '549d71b1498e498dac698541',
        'name': 'Zuckerbaby',
        'location': {'address': 'Richardplatz 21',
         'lat': 52.47406674663551,
         'lng': 13.447139247387375,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47406674663551,
           'lng': 13.447139247387375}],
         'distance': 334,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardplatz 21',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-549d71b1498e498dac698541-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d039544a26854810d9fb2bd',
        'name': 'Geschwister Nothaft',
        'location': {'address': 'Schwarzastr. 9',
         'lat': 52.472679,
         'lng': 13.454639,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.472679,
           'lng': 13.454639}],
         'distance': 441,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schwarzastr. 9',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '404620307'}},
       'referralId': 'e-0-4d039544a26854810d9fb2bd-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '571b5777498eba1f339da072',
        'name': 'Hallmann & Klee',
        'location': {'address': 'Böhmische Str. 13',
         'lat': 52.47387511864995,
         'lng': 13.449516591524423,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47387511864995,
           'lng': 13.449516591524423}],
         'distance': 304,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Böhmische Str. 13',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-571b5777498eba1f339da072-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c3a05951a38ef3b86079321',
        'name': 'Louis',
        'location': {'address': 'Richardplatz 5',
         'lat': 52.474163,
         'lng': 13.445159,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.474163,
           'lng': 13.445159}],
         'distance': 404,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardplatz 5',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c3a05951a38ef3b86079321-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c34606a7cc0c9b68c2af39a',
        'name': 'Café Vux',
        'location': {'address': 'Wipperstr. 14',
         'crossStreet': 'Kirchhofstr.',
         'lat': 52.47215815149066,
         'lng': 13.44250738620758,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47215815149066,
           'lng': 13.44250738620758}],
         'distance': 426,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wipperstr. 14 (Kirchhofstr.)',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1d3941735',
          'name': 'Vegetarian / Vegan Restaurant',
          'pluralName': 'Vegetarian / Vegan Restaurants',
          'shortName': 'Vegetarian / Vegan',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/vegetarian_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c34606a7cc0c9b68c2af39a-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d934d6452ed224b52e819ac',
        'name': 'Mal so - Mal so',
        'location': {'address': 'Böhmische Str. 14',
         'lat': 52.47420733526203,
         'lng': 13.449353684771335,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47420733526203,
           'lng': 13.449353684771335}],
         'distance': 338,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Böhmische Str. 14',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d934d6452ed224b52e819ac-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5abe0757123a197372d98a8a',
        'name': 'The Future Breakfast',
        'location': {'address': 'Böhmische Str. 46',
         'lat': 52.473874,
         'lng': 13.449033,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.473874,
           'lng': 13.449033}],
         'distance': 299,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Böhmische Str. 46',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5abe0757123a197372d98a8a-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b7597e3f964a520d3162ee3',
        'name': 'Villa Rixdorf',
        'location': {'address': 'Richardplatz 6',
         'lat': 52.47431240980536,
         'lng': 13.444694161725133,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47431240980536,
           'lng': 13.444694161725133}],
         'distance': 436,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardplatz 6',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b7597e3f964a520d3162ee3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d4566ea1928a35dd6d6c270',
        'name': 'Historische Schmiede am Richardplatz',
        'location': {'address': 'Richardplatz 28',
         'lat': 52.47421600090148,
         'lng': 13.445959932900418,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47421600090148,
           'lng': 13.445959932900418}],
         'distance': 380,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardplatz 28',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d4566ea1928a35dd6d6c270-8'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e88a614367fd9cfcf71'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Köllnische Heide',
   'headerFullLocation': 'Köllnische Heide, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.472900004500005,
     'lng': 13.470672965630067},
    'sw': {'lat': 52.4638999955, 'lng': 13.455927034369934}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5dc1aaa5db6fca00083a1761',
        'name': 'Fresh Mesh Café Neukölln',
        'location': {'address': 'Grenzallee 4C',
         'lat': 52.4698566,
         'lng': 13.4631247,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4698566,
           'lng': 13.4631247}],
         'distance': 162,
         'postalCode': '12057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grenzallee 4C', '12057 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '570717532'}},
       'referralId': 'e-0-5dc1aaa5db6fca00083a1761-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e883a1e82333e91ac87'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Neukölln',
   'headerFullLocation': 'Neukölln, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.4854000045, 'lng': 13.45867506028745},
    'sw': {'lat': 52.476399995499996, 'lng': 13.44392493971255}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '594f88f19ef8ef328a3e5960',
        'name': 'Café ohne Titel',
        'location': {'address': 'Treptower Str. 91',
         'lat': 52.478859,
         'lng': 13.448919,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.478859,
           'lng': 13.448919}],
         'distance': 278,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Treptower Str. 91', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-594f88f19ef8ef328a3e5960-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c430451e26920a115d460e7',
        'name': 'Dritter Raum',
        'location': {'address': 'Hertzbergstraße 14',
         'lat': 52.477134,
         'lng': 13.448106,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.477134,
           'lng': 13.448106}],
         'distance': 471,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hertzbergstraße 14',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c430451e26920a115d460e7-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6b703de4b01a6dd60289aa',
        'name': 'Poropati',
        'location': {'address': 'Weserstr. 79,',
         'lat': 52.480434738628304,
         'lng': 13.446807020793997,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.480434738628304,
           'lng': 13.446807020793997}],
         'distance': 308,
         'postalCode': '12059',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstr. 79,', '12059 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6b703de4b01a6dd60289aa-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55f00b3d498e0631d05c33b2',
        'name': 'Comedy Café Berlin',
        'location': {'address': 'Roseggerstr. 17',
         'crossStreet': 'Weserstr.',
         'lat': 52.480254812930724,
         'lng': 13.446879386901855,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.480254812930724,
           'lng': 13.446879386901855}],
         'distance': 308,
         'postalCode': '12059',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Roseggerstr. 17 (Weserstr.)',
          '12059 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d18e941735',
          'name': 'Comedy Club',
          'pluralName': 'Comedy Clubs',
          'shortName': 'Comedy Club',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/arts_entertainment/comedyclub_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '144260848'}},
       'referralId': 'e-0-55f00b3d498e0631d05c33b2-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e89726940047d4cc982'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tempelhof',
   'headerFullLocation': 'Tempelhof, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4689000045, 'lng': 13.409672295665075},
    'sw': {'lat': 52.459899995499995, 'lng': 13.394927704334926}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e893e071546b3aea719'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tempelhof',
   'headerFullLocation': 'Tempelhof, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4830000045, 'lng': 13.386474657993688},
    'sw': {'lat': 52.473999995499994, 'lng': 13.371725342006311}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e89c4e5cf3a838ef347'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Tempelhof',
   'headerFullLocation': 'Alt-Tempelhof, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.468600004500004,
     'lng': 13.382072245424057},
    'sw': {'lat': 52.4595999955, 'lng': 13.367327754575944}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5117947ce4b0eb6a9e8765f5',
        'name': 'Müllerskind',
        'location': {'address': 'Parkstraße 11',
         'lat': 52.462680782026176,
         'lng': 13.381306691069783,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.462680782026176,
           'lng': 13.381306691069783}],
         'distance': 475,
         'postalCode': '12103',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Parkstraße 11', '12103 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5117947ce4b0eb6a9e8765f5-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eea2f16775b562a39d06de1',
        'name': 'Café Klatsch',
        'location': {'address': 'Alt-Tempelhof 46',
         'lat': 52.46585700255897,
         'lng': 13.38076329559754,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46585700255897,
           'lng': 13.38076329559754}],
         'distance': 455,
         'postalCode': '12103',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alt-Tempelhof 46',
          '12103 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eea2f16775b562a39d06de1-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '500e9842e4b048366a3ee924',
        'name': 'Kirsch & Karamell',
        'location': {'address': 'Manteuffelstr. 1 - 2',
         'lat': 52.466168799767125,
         'lng': 13.37754453767474,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.466168799767125,
           'lng': 13.37754453767474}],
         'distance': 300,
         'postalCode': '12103',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Manteuffelstr. 1 - 2',
          '12103 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-500e9842e4b048366a3ee924-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8ae6b2a169842929c3'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Tempelhof',
   'headerFullLocation': 'Alt-Tempelhof, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4537000045, 'lng': 13.378769751235636},
    'sw': {'lat': 52.444699995499995, 'lng': 13.364030248764363}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8af80c210a28c5b694'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Mariendorf',
   'headerFullLocation': 'Mariendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4357000045, 'lng': 13.399066741036286},
    'sw': {'lat': 52.426699995499995, 'lng': 13.384333258963714}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8a92e219640def08e9'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Mariendorf',
   'headerFullLocation': 'Mariendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4510000045, 'lng': 13.406669299502544},
    'sw': {'lat': 52.4419999955, 'lng': 13.391930700497456}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8b334c670565cc084c'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4698000045, 'lng': 13.353572446393448},
    'sw': {'lat': 52.4607999955, 'lng': 13.338827553606551}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6fcc99d274b60c6a89d70d',
        'name': 'Creme & Krümel',
        'location': {'address': 'Cranachstr. 57-58',
         'lat': 52.46823025739245,
         'lng': 13.342234316156759,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46823025739245,
           'lng': 13.342234316156759}],
         'distance': 422,
         'postalCode': '12157',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Cranachstr. 57-58',
          '12157 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1c9941735',
          'name': 'Ice Cream Shop',
          'pluralName': 'Ice Cream Shops',
          'shortName': 'Ice Cream',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/icecream_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6fcc99d274b60c6a89d70d-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8b12d8516a9894828f'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Friedenau',
   'headerFullLocation': 'Friedenau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 10,
   'suggestedBounds': {'ne': {'lat': 52.4782000045, 'lng': 13.344273853576627},
    'sw': {'lat': 52.4691999955, 'lng': 13.329526146423373}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54ab7e98498eea9b59fcd9aa',
        'name': 'Lula am Markt',
        'location': {'address': 'Lauterstr. 14/15',
         'lat': 52.47201175490675,
         'lng': 13.335469251204604,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47201175490675,
           'lng': 13.335469251204604}],
         'distance': 211,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lauterstr. 14/15',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54ab7e98498eea9b59fcd9aa-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5af160f606fb60002c7d06ca',
        'name': 'Lula Deli & Grill',
        'location': {'address': 'Lauterstr. 14/15',
         'crossStreet': 'Niedstr.',
         'lat': 52.472331857004846,
         'lng': 13.335067660142299,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.472331857004846,
           'lng': 13.335067660142299}],
         'distance': 196,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lauterstr. 14/15 (Niedstr.)',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5af160f606fb60002c7d06ca-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bdc723dfed22d7fdf3258c9',
        'name': 'LuLa Deli Deluxe',
        'location': {'address': 'Lauterstrasse 14',
         'crossStreet': 'Rheinstr.',
         'lat': 52.47156510733492,
         'lng': 13.335753081340616,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47156510733492,
           'lng': 13.335753081340616}],
         'distance': 250,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lauterstrasse 14 (Rheinstr.)',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bdc723dfed22d7fdf3258c9-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc05ec22a89ef3b6c6bf088',
        'name': 'Frau Behrens Torten',
        'location': {'address': 'Rheinstr. 65',
         'crossStreet': 'Dickhardtstr.',
         'lat': 52.471240812826586,
         'lng': 13.335039286448925,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.471240812826586,
           'lng': 13.335039286448925}],
         'distance': 301,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rheinstr. 65 (Dickhardtstr.)',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc05ec22a89ef3b6c6bf088-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c416f05af052d7f5d657d79',
        'name': 'pane al caffè',
        'location': {'address': 'Rheinstraße 61',
         'lat': 52.47043876678622,
         'lng': 13.334167997362965,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47043876678622,
           'lng': 13.334167997362965}],
         'distance': 407,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rheinstraße 61',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c416f05af052d7f5d657d79-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b82f9ddf964a52069f030e3',
        'name': 's-cafe',
        'location': {'address': 'Bahnhofstr. 4c',
         'lat': 52.47003928376604,
         'lng': 13.340238620196084,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47003928376604,
           'lng': 13.340238620196084}],
         'distance': 466,
         'postalCode': '12157',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bahnhofstr. 4c',
          '12157 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b82f9ddf964a52069f030e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bba12aa3db7b713fcd9229a',
        'name': 'Café Breslau Fuego',
        'location': {'address': 'Hauptstr. 80',
         'lat': 52.47204880772586,
         'lng': 13.335664280507153,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47204880772586,
           'lng': 13.335664280507153}],
         'distance': 202,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hauptstr. 80', '12159 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bba12aa3db7b713fcd9229a-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5425a807498e31ae959321fe',
        'name': 'Café Smørrebrød',
        'location': {'address': 'Dickhardtstrasse 55',
         'lat': 52.47292188470457,
         'lng': 13.337183816128144,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47292188470457,
           'lng': 13.337183816128144}],
         'distance': 88,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dickhardtstrasse 55',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '95547233'}},
       'referralId': 'e-0-5425a807498e31ae959321fe-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fe82abae4b0972a1dd63797',
        'name': 'Café Traum',
        'location': {'address': 'Hauptstr. 69',
         'crossStreet': 'Hähnelstr.',
         'lat': 52.475883,
         'lng': 13.340335,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.475883,
           'lng': 13.340335}],
         'distance': 336,
         'postalCode': '12159',
         'cc': 'DE',
         'neighborhood': 'Friedenau',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hauptstr. 69 (Hähnelstr.)',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fe82abae4b0972a1dd63797-8'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8c35436f34a0796464'},
  'response': {'headerLocation': 'Friedenau',
   'headerFullLocation': 'Friedenau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.4749000045, 'lng': 13.334373300671704},
    'sw': {'lat': 52.465899995499996, 'lng': 13.319626699328296}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c416f05af052d7f5d657d79',
        'name': 'pane al caffè',
        'location': {'address': 'Rheinstraße 61',
         'lat': 52.47043876678622,
         'lng': 13.334167997362965,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47043876678622,
           'lng': 13.334167997362965}],
         'distance': 486,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rheinstraße 61',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c416f05af052d7f5d657d79-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5087af18e4b0a95b69f222e8',
        'name': 'Wild Caffè',
        'location': {'address': 'Südwestkorso 63',
         'lat': 52.473186658330164,
         'lng': 13.321569279236925,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.473186658330164,
           'lng': 13.321569279236925}],
         'distance': 481,
         'postalCode': '12161',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Südwestkorso 63',
          '12161 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5087af18e4b0a95b69f222e8-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bf5643a6a31d13a32d0962e',
        'name': "kaf'fee",
        'location': {'address': 'Hackerstr. 1',
         'lat': 52.46702670094589,
         'lng': 13.325572265413419,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46702670094589,
           'lng': 13.325572265413419}],
         'distance': 387,
         'postalCode': '12161',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hackerstr. 1', '12161 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bf5643a6a31d13a32d0962e-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d39f249bf6d5481743ac8e1',
        'name': 'Kaiserdiele',
        'location': {'address': 'Suedwestkorso 62a',
         'lat': 52.47263850348386,
         'lng': 13.321115970611572,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47263850348386,
           'lng': 13.321115970611572}],
         'distance': 470,
         'postalCode': '12161',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Suedwestkorso 62a',
          '12161 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d39f249bf6d5481743ac8e1-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58aaf1e2ebf028557b782b70',
        'name': 'STATEMENT Shisha Bar & Cafe',
        'location': {'address': 'Rheinstr. 60',
         'lat': 52.470101,
         'lng': 13.333805,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.470101,
           'lng': 13.333805}],
         'distance': 462,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rheinstr. 60', '12159 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d119941735',
          'name': 'Hookah Bar',
          'pluralName': 'Hookah Bars',
          'shortName': 'Hookah Bar',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/nightlife/hookahbar_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58aaf1e2ebf028557b782b70-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8c32abda5e08fb7491'},
  'response': {'headerLocation': 'Schlossstraße',
   'headerFullLocation': 'Schlossstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.467100004500004,
     'lng': 13.325871994232271},
    'sw': {'lat': 52.4580999955, 'lng': 13.31112800576773}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51c58db5498e024d8db89498',
        'name': 'Café Baier',
        'location': {'address': 'Schloßstr. 26',
         'lat': 52.45944748222248,
         'lng': 13.32310672132395,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45944748222248,
           'lng': 13.32310672132395}],
         'distance': 469,
         'postalCode': '12163',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schloßstr. 26', '12163 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51c58db5498e024d8db89498-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5076d3e2e4b0c314980f872d',
        'name': 'café7rock',
        'location': {'lat': 52.46318140086736,
         'lng': 13.3235482611983,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46318140086736,
           'lng': 13.3235482611983}],
         'distance': 348,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5076d3e2e4b0c314980f872d-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59858f22e96d0c55fc0d9151',
        'name': "Gregory's",
        'location': {'lat': 52.460289,
         'lng': 13.323854,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.460289,
           'lng': 13.323854}],
         'distance': 445,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59858f22e96d0c55fc0d9151-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57fde817498e3c672efb54d7',
        'name': 'Café Cocosh',
        'location': {'address': 'Muthesiusstr. 8',
         'lat': 52.459008,
         'lng': 13.320795,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.459008,
           'lng': 13.320795}],
         'distance': 429,
         'postalCode': '12163',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Muthesiusstr. 8',
          '12163 Berlin',
          'Deutschland']},
        'categories': [{'id': '5744ccdfe4b0c0459246b4b5',
          'name': 'Indoor Play Area',
          'pluralName': 'Indoor Play Areas',
          'shortName': 'Indoor Play Area',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/parks_outdoors/playground_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57fde817498e3c672efb54d7-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8c5111134f6bbac39a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schlossstraße',
   'headerFullLocation': 'Schlossstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.4602000045, 'lng': 13.322170839035556},
    'sw': {'lat': 52.4511999955, 'lng': 13.307429160964444}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ddd0bdfd4c082f960d3f8a1',
        'name': 'Al Teatro',
        'location': {'address': 'Schloßstr. 34-36',
         'crossStreet': 'Grunewaldstr.',
         'lat': 52.45795762431472,
         'lng': 13.32040786743164,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45795762431472,
           'lng': 13.32040786743164}],
         'distance': 455,
         'postalCode': '12163',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schloßstr. 34-36 (Grunewaldstr.)',
          '12163 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ddd0bdfd4c082f960d3f8a1-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fcc6e2dc2ee518226635ff0',
        'name': 'Café in der Schwartzschen Villa',
        'location': {'address': 'Grunewaldstr. 54-55',
         'lat': 52.457,
         'lng': 13.31933,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.457,
           'lng': 13.31933}],
         'distance': 339,
         'postalCode': '12165',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunewaldstr. 54-55',
          '12165 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '578822630'}},
       'referralId': 'e-0-4fcc6e2dc2ee518226635ff0-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc488f1abf495215723c593',
        'name': 'Café Scala',
        'location': {'address': 'Schloßstr. 40',
         'crossStreet': 'Grunewaldstr.',
         'lat': 52.456564,
         'lng': 13.31963884,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.456564,
           'lng': 13.31963884}],
         'distance': 342,
         'postalCode': '12165',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schloßstr. 40 (Grunewaldstr.)',
          '12165 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc488f1abf495215723c593-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8da614367fd9cfe47d'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Steglitz',
   'headerFullLocation': 'Steglitz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.4531000045, 'lng': 13.341169650844305},
    'sw': {'lat': 52.4440999955, 'lng': 13.326430349155695}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bb71442f562ef3b56023197',
        'name': 'Konditorei Rabien',
        'location': {'address': 'Klingsorstr. 13',
         'lat': 52.45192829091471,
         'lng': 13.330256851434882,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45192829091471,
           'lng': 13.330256851434882}],
         'distance': 441,
         'postalCode': '12167',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Klingsorstr. 13',
          '12167 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bb71442f562ef3b56023197-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '548c2bde498edc77fccb148b',
        'name': 'Caffe Capello',
        'location': {'lat': 52.445533725907715,
         'lng': 13.329376851569789,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.445533725907715,
           'lng': 13.329376851569789}],
         'distance': 454,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-548c2bde498edc77fccb148b-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8d88be05604b7874cc'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Steglitz',
   'headerFullLocation': 'Steglitz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4593000045, 'lng': 13.350870688392295},
    'sw': {'lat': 52.450299995499996, 'lng': 13.336129311607706}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8e92e219640def176d'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Drakestraße',
   'headerFullLocation': 'Drakestraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.448900004500004,
     'lng': 13.31696894820418},
    'sw': {'lat': 52.4398999955, 'lng': 13.30223105179582}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8ef6c3124343309c2c'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Drakestraße',
   'headerFullLocation': 'Drakestraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4385000045, 'lng': 13.301867209080248},
    'sw': {'lat': 52.429499995499995, 'lng': 13.28713279091975}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '552cf63b498e9331a3dfa2f0',
        'name': 'Frau Lüske Kaffeehaus',
        'location': {'address': 'Baseler Str. 46',
         'lat': 52.437903,
         'lng': 13.295155,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.437903,
           'lng': 13.295155}],
         'distance': 436,
         'postalCode': '12205',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Baseler Str. 46',
          '12205 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-552cf63b498e9331a3dfa2f0-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8fa0021654ca51d2e5'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Ostpreußendamm',
   'headerFullLocation': 'Ostpreußendamm, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4244000045, 'lng': 13.320664852927417},
    'sw': {'lat': 52.415399995499996, 'lng': 13.305935147072583}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8f7694ba313bdaba26'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Ostpreußendamm',
   'headerFullLocation': 'Ostpreußendamm, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.422400004500005,
     'lng': 13.336464518879493},
    'sw': {'lat': 52.4133999955, 'lng': 13.321735481120507}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e8f66505c5f6f864aff'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lankwitz',
   'headerFullLocation': 'Lankwitz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.444000004500005,
     'lng': 13.353568128676724},
    'sw': {'lat': 52.4349999955, 'lng': 13.338831871323276}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d3ac9b8325ff04df9891f45',
        'name': 'Malibu',
        'location': {'address': 'Leonorenstr. 71 a',
         'lat': 52.4387064854588,
         'lng': 13.343900769713198,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4387064854588,
           'lng': 13.343900769713198}],
         'distance': 179,
         'postalCode': '12247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leonorenstr. 71 a',
          '12247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d3ac9b8325ff04df9891f45-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e90a5421e17cce9953a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lankwitz',
   'headerFullLocation': 'Lankwitz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4309000045, 'lng': 13.359165938854476},
    'sw': {'lat': 52.4218999955, 'lng': 13.344434061145526}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e903a1e82333e91cc3d'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Marienfelde',
   'headerFullLocation': 'Marienfelde, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.417900004500005,
     'lng': 13.382363767415255},
    'sw': {'lat': 52.4088999955, 'lng': 13.367636232584745}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9012d8516a98949884'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Marienfelde',
   'headerFullLocation': 'Marienfelde, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.415100004500005,
     'lng': 13.36046329993782},
    'sw': {'lat': 52.4060999955, 'lng': 13.34573670006218}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f4a607fe4b0570c8f23f153',
        'name': 'star',
        'location': {'address': 'Hildburghauser Str. 7',
         'lat': 52.41288834570477,
         'lng': 13.358732259755381,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.41288834570477,
           'lng': 13.358732259755381}],
         'distance': 459,
         'postalCode': '12279',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hildburghauser Str. 7',
          '12279 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d113951735',
          'name': 'Gas Station',
          'pluralName': 'Gas Stations',
          'shortName': 'Gas Station',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/gas_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '573381819'}},
       'referralId': 'e-0-4f4a607fe4b0570c8f23f153-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9188be05604b788199'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lichtenrade',
   'headerFullLocation': 'Lichtenrade, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.407800004500004,
     'lng': 13.409462081519077},
    'sw': {'lat': 52.3987999955, 'lng': 13.394737918480924}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e91556f332995d1f07a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lichtenrade',
   'headerFullLocation': 'Lichtenrade, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.3931000045, 'lng': 13.398059629576457},
    'sw': {'lat': 52.384099995499994, 'lng': 13.383340370423545}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e91c4e5cf3a838f1455'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lichtenrade',
   'headerFullLocation': 'Lichtenrade, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.395000004500005,
     'lng': 13.42445994637504},
    'sw': {'lat': 52.3859999955, 'lng': 13.40974005362496}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e92c656a10ca6a7dcfd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Britz',
   'headerFullLocation': 'Britz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4554000045, 'lng': 13.435470035696987},
    'sw': {'lat': 52.446399995499995, 'lng': 13.420729964303014}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e92f32ddb151ee2eb4a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Britz',
   'headerFullLocation': 'Britz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4298000045, 'lng': 13.429465755053029},
    'sw': {'lat': 52.4207999955, 'lng': 13.414734244946972}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e92b8c07577f77b6f9a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Buckow',
   'headerFullLocation': 'Buckow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.4373000045, 'lng': 13.462867008480544},
    'sw': {'lat': 52.4282999955, 'lng': 13.448132991519458}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d0361d27d9ba35d38665f23',
        'name': 'Al Teatro',
        'location': {'address': 'Johannistaler Chaussee 317',
         'lat': 52.42934813541124,
         'lng': 13.454725778413499,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.42934813541124,
           'lng': 13.454725778413499}],
         'distance': 387,
         'postalCode': '12353',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Johannistaler Chaussee 317',
          '12353 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d0361d27d9ba35d38665f23-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cf145811d18a143a12552ec',
        'name': 'Café Sieben',
        'location': {'address': 'Fritz-Erler-Allee 57',
         'lat': 52.43165662652494,
         'lng': 13.460692022234602,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.43165662652494,
           'lng': 13.460692022234602}],
         'distance': 374,
         'postalCode': '12351',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fritz-Erler-Allee 57',
          '12351 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '192901612'}},
       'referralId': 'e-0-4cf145811d18a143a12552ec-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56db15c8498ebb7ab5a64b02',
        'name': 'Coffee Fellows',
        'location': {'lat': 52.42938569236201,
         'lng': 13.45466719111275,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.42938569236201,
           'lng': 13.45466719111275}],
         'distance': 384,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56db15c8498ebb7ab5a64b02-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e93ebf7ed05268302a7'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Gropiusstadt',
   'headerFullLocation': 'Gropiusstadt, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4272000045, 'lng': 13.466265320660499},
    'sw': {'lat': 52.4181999955, 'lng': 13.4515346793395}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5151d12fe4b0873d63be3d9c',
        'name': 'Cafe Happiness',
        'location': {'lat': 52.42509330584653,
         'lng': 13.46311774557393,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.42509330584653,
           'lng': 13.46311774557393}],
         'distance': 391,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5151d12fe4b0873d63be3d9c-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e93726940047d4cf3f6'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Rudow',
   'headerFullLocation': 'Rudow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.415500004500004,
     'lng': 13.5051633667156},
    'sw': {'lat': 52.4064999955, 'lng': 13.4904366332844}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e93e76a681dc8e670dc'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Rudow',
   'headerFullLocation': 'Rudow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4338000045, 'lng': 13.497866423478913},
    'sw': {'lat': 52.424799995499995, 'lng': 13.48313357652109}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9432abda5e08fb93eb'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Britz',
   'headerFullLocation': 'Britz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4518000045, 'lng': 13.460469433341906},
    'sw': {'lat': 52.442799995499996, 'lng': 13.445730566658092}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c8346a7dc018cfae597d76c',
        'name': 'Bäckerei Caliskan',
        'location': {'address': 'Fritz-Reuter-Allee 48',
         'lat': 52.446809987690415,
         'lng': 13.44845927209932,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.446809987690415,
           'lng': 13.44845927209932}],
         'distance': 319,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fritz-Reuter-Allee 48',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c8346a7dc018cfae597d76c-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9435436f34a079871f'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Treptow',
   'headerFullLocation': 'Alt-Treptow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.491100004500005,
     'lng': 13.474576015962935},
    'sw': {'lat': 52.4820999955, 'lng': 13.459823984037065}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e94d9a7163144685c8d'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Baumschulenweg',
   'headerFullLocation': 'Baumschulenweg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.466900004500005,
     'lng': 13.489071960741708},
    'sw': {'lat': 52.4578999955, 'lng': 13.474328039258292}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55b8d082498e7eb6a3b7d9dc',
        'name': 'Pauline P.',
        'location': {'address': 'Kiefholzstr. 258',
         'lat': 52.465738907208795,
         'lng': 13.486540867837343,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.465738907208795,
           'lng': 13.486540867837343}],
         'distance': 495,
         'postalCode': '12437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kiefholzstr. 258',
          '12437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55b8d082498e7eb6a3b7d9dc-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '537b7d36498ee27a2f7a8bff',
        'name': 'Eiscafé Alfima',
        'location': {'address': 'Baumschulenstr. 72',
         'lat': 52.46248209521513,
         'lng': 13.483125802324558,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46248209521513,
           'lng': 13.483125802324558}],
         'distance': 97,
         'postalCode': '12437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Baumschulenstr. 72',
          '12437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-537b7d36498ee27a2f7a8bff-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e95d9a7163144685e53'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Oberspree',
   'headerFullLocation': 'Oberspree, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.457300004500006,
     'lng': 13.535970353658046},
    'sw': {'lat': 52.4482999955, 'lng': 13.521229646341956}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5443cd1c498e35dcdadfd7b2',
        'name': 'Kranhaus Café',
        'location': {'address': 'Paul-Tropp-Str. 11',
         'lat': 52.454245344669864,
         'lng': 13.528738433865446,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.454245344669864,
           'lng': 13.528738433865446}],
         'distance': 161,
         'postalCode': '12459',
         'cc': 'DE',
         'neighborhood': 'Oberschöneweide',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Tropp-Str. 11',
          '12459 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5443cd1c498e35dcdadfd7b2-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b2f4118f964a52075ea24e3',
        'name': 'Waschbar',
        'location': {'address': 'Johannes-Kraatz-Str. 9',
         'crossStreet': 'Wilhelminenhof',
         'lat': 52.4561926939896,
         'lng': 13.526201042830328,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4561926939896,
           'lng': 13.526201042830328}],
         'distance': 411,
         'postalCode': '12459',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Johannes-Kraatz-Str. 9 (Wilhelminenhof)',
          '12459 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b2f4118f964a52075ea24e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50924ba8e4b092855ec45423',
        'name': 'Turmcafe',
        'location': {'lat': 52.45697425252819,
         'lng': 13.529669477258276,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45697425252819,
           'lng': 13.529669477258276}],
         'distance': 470,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50924ba8e4b092855ec45423-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e95c656a10ca6a7ebda'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wuhlheide',
   'headerFullLocation': 'Wuhlheide, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.470100004500004,
     'lng': 13.535372496638015},
    'sw': {'lat': 52.4610999955, 'lng': 13.520627503361986}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e96d64a73472526f811'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Johannisthal',
   'headerFullLocation': 'Johannisthal, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4482000045, 'lng': 13.512568831114368},
    'sw': {'lat': 52.4391999955, 'lng': 13.497831168885632}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e960cc1d6096fcb06a1'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Adlershof',
   'headerFullLocation': 'Adlershof, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4401000045, 'lng': 13.550567476568546},
    'sw': {'lat': 52.4310999955, 'lng': 13.535832523431456}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e96c4e5cf3a838f27d1'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Altglienicke',
   'headerFullLocation': 'Altglienicke, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4173000045, 'lng': 13.549063667235043},
    'sw': {'lat': 52.408299995499995, 'lng': 13.534336332764958}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9733f6626c689778fc'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Bohnsdorf',
   'headerFullLocation': 'Bohnsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4021000045, 'lng': 13.571561130514393},
    'sw': {'lat': 52.393099995499995, 'lng': 13.556838869485606}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e972158a34dc840f132'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schmöckwitz',
   'headerFullLocation': 'Schmöckwitz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.3901000045, 'lng': 13.641259129440167},
    'sw': {'lat': 52.381099995499994, 'lng': 13.626540870559834}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e97e2d2433c21b81e1c'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Museumsinsel',
   'headerFullLocation': 'Museumsinsel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 22,
   'suggestedBounds': {'ne': {'lat': 52.5212000045, 'lng': 13.407381067922275},
    'sw': {'lat': 52.5121999955, 'lng': 13.392618932077726}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55782f9e498ee3b164cc75f5',
        'name': 'Pax Coffee',
        'location': {'address': 'Oberwallstraße 20',
         'lat': 52.513906,
         'lng': 13.397219,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513906,
           'lng': 13.397219}],
         'distance': 363,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oberwallstraße 20',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55782f9e498ee3b164cc75f5-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54199179498e6e1206f0b810',
        'name': 'Lunch Time',
        'location': {'address': 'Jägerstr. 34',
         'lat': 52.51427792365403,
         'lng': 13.396987908146501,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51427792365403,
           'lng': 13.396987908146501}],
         'distance': 338,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jägerstr. 34', '10117 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '150176200'}},
       'referralId': 'e-0-54199179498e6e1206f0b810-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c56ddb7cc96c9b6a195772e',
        'name': 'Café am Petriplatz',
        'location': {'address': 'Kleine Gertraudenstr. 3',
         'lat': 52.513090475041224,
         'lng': 13.404057224868422,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513090475041224,
           'lng': 13.404057224868422}],
         'distance': 486,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kleine Gertraudenstr. 3',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c56ddb7cc96c9b6a195772e-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '500fbae1e4b06b19286e62d2',
        'name': 'Café im Zeughaus (DHM)',
        'location': {'address': 'Unter den Linden 2',
         'lat': 52.517847285596254,
         'lng': 13.397708451165325,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517847285596254,
           'lng': 13.397708451165325}],
         'distance': 201,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 2',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-500fbae1e4b06b19286e62d2-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a48a7be75eee46f19ff83bd',
        'name': 'Kaffee Karamell',
        'location': {'address': 'Scharrenstr. 22',
         'lat': 52.51419708479862,
         'lng': 13.405519796740581,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51419708479862,
           'lng': 13.405519796740581}],
         'distance': 466,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Scharrenstr. 22',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a48a7be75eee46f19ff83bd-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6df5f2e4b08610771271c9',
        'name': 'KugelEi-Café',
        'location': {'lat': 52.516566,
         'lng': 13.406955,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516566,
           'lng': 13.406955}],
         'distance': 471,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6df5f2e4b08610771271c9-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0e18d0f964a520f05423e3',
        'name': 'Balzac Coffee',
        'location': {'address': 'Karl-Liebknecht-Str. 5',
         'crossStreet': 'Spandauer Str.',
         'lat': 52.519681063790664,
         'lng': 13.403686798037004,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519681063790664,
           'lng': 13.403686798037004}],
         'distance': 415,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 5 (Spandauer Str.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0e18d0f964a520f05423e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc769782f94d13a71e0117f',
        'name': 'Chipps',
        'location': {'address': 'Jägerstr. 35',
         'lat': 52.514473967038725,
         'lng': 13.397836848291707,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.514473967038725,
           'lng': 13.397836848291707}],
         'distance': 287,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jägerstr. 35', '10117 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1d3941735',
          'name': 'Vegetarian / Vegan Restaurant',
          'pluralName': 'Vegetarian / Vegan Restaurants',
          'shortName': 'Vegetarian / Vegan',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/vegetarian_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc769782f94d13a71e0117f-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c3d57cc7d002d7f9ab9af18',
        'name': "Tim's Bakery and Deli",
        'location': {'address': 'Bebelplatz 1',
         'lat': 52.516550985097936,
         'lng': 13.393534512490923,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516550985097936,
           'lng': 13.393534512490923}],
         'distance': 438,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bebelplatz 1', '10117 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c3d57cc7d002d7f9ab9af18-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eedf41d9a52993fb7cfb1ef',
        'name': 'Allegretto Caffè',
        'location': {'address': 'Bodestr. 3',
         'lat': 52.519833,
         'lng': 13.398358,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519833,
           'lng': 13.398358}],
         'distance': 366,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bodestr. 3', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eedf41d9a52993fb7cfb1ef-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6850c9f964a52045712be3',
        'name': 'Restaurant Cum Laude',
        'location': {'address': 'Universitätsstr. 4',
         'lat': 52.51855135055943,
         'lng': 13.394509655752087,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51855135055943,
           'lng': 13.394509655752087}],
         'distance': 425,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Universitätsstr. 4',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6850c9f964a52045712be3-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50f6c465e4b052e422df4aa8',
        'name': 'Café im Alten Museum',
        'location': {'address': 'Am Lustgarten',
         'lat': 52.51936767697486,
         'lng': 13.39857816696167,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51936767697486,
           'lng': 13.39857816696167}],
         'distance': 312,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Lustgarten', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50f6c465e4b052e422df4aa8-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55f41f40498e7cc71a0d0632',
        'name': 'Domcafé',
        'location': {'address': 'Am Lustgarten 1',
         'lat': 52.51862016607101,
         'lng': 13.401104807853699,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51862016607101,
           'lng': 13.401104807853699}],
         'distance': 226,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Lustgarten 1',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55f41f40498e7cc71a0d0632-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d4ec4c423a76dcb103863dc',
        'name': 'Food Lounge Berlin',
        'location': {'address': 'Sankt-Wolfgang-Str. 4',
         'lat': 52.520201491769846,
         'lng': 13.402972769396458,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520201491769846,
           'lng': 13.402972769396458}],
         'distance': 438,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sankt-Wolfgang-Str. 4',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d4ec4c423a76dcb103863dc-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5127e7bee4b03a531599160b',
        'name': 'Gameduell Coffeemaker',
        'location': {'address': 'Taubenstrasse 24',
         'lat': 52.51385670505711,
         'lng': 13.39547288000693,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51385670505711,
           'lng': 13.39547288000693}],
         'distance': 440,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Taubenstrasse 24', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5127e7bee4b03a531599160b-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57ac57bc498ed153471494a0',
        'name': 'Back Palace',
        'location': {'address': 'Propststraße 1-4',
         'lat': 52.51695,
         'lng': 13.406853,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51695,
           'lng': 13.406853}],
         'distance': 465,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Propststraße 1-4',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57ac57bc498ed153471494a0-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc06a05f8219c74b083b110',
        'name': 'CafÄ— Pergamon',
        'location': {'address': 'Bodestr. 1-3',
         'lat': 52.520399155853454,
         'lng': 13.396410942077637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520399155853454,
           'lng': 13.396410942077637}],
         'distance': 478,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bodestr. 1-3', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc06a05f8219c74b083b110-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fe068a8e4b096aa57eefe3e',
        'name': 'Burgcafé',
        'location': {'address': 'Burgstr. 26',
         'crossStreet': 'DG, Raum 506',
         'lat': 52.521019337192,
         'lng': 13.401024341583252,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.521019337192,
           'lng': 13.401024341583252}],
         'distance': 485,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Burgstr. 26 (DG, Raum 506)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fe068a8e4b096aa57eefe3e-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cfa405134c1a09353033f0e',
        'name': 'Bäcker Wiedemann',
        'location': {'address': 'Karl-Liebknecht-Str. 5',
         'lat': 52.52017018773914,
         'lng': 13.40459257961874,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52017018773914,
           'lng': 13.40459257961874}],
         'distance': 495,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 5',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cfa405134c1a09353033f0e-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b7fcd07f964a5205d3e30e3',
        'name': 'the coffee shop',
        'location': {'address': 'Hausvogteiplatz 13',
         'crossStreet': 'Niederwallstr.',
         'lat': 52.51304581458592,
         'lng': 13.397366344797774,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51304581458592,
           'lng': 13.397366344797774}],
         'distance': 444,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hausvogteiplatz 13 (Niederwallstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b7fcd07f964a5205d3e30e3-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '572881d6498e8d9e56d37742',
        'name': 'Café & Restaurant Spreeblick',
        'location': {'address': 'Propststr. 9',
         'lat': 52.516152310515814,
         'lng': 13.405863046646118,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516152310515814,
           'lng': 13.405863046646118}],
         'distance': 401,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Propststr. 9', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '184575676'}},
       'referralId': 'e-0-572881d6498e8d9e56d37742-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b699b2ee96d0c002c832626',
        'name': 'Allegretto Gran Caffè',
        'location': {'address': 'Anna-Louisa-Karsch-Str. 2',
         'lat': 52.52063913439294,
         'lng': 13.401193910758593,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52063913439294,
           'lng': 13.401193910758593}],
         'distance': 445,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Anna-Louisa-Karsch-Str. 2',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b699b2ee96d0c002c832626-21'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e98ebf5db5626df4ae4'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Köpenick',
   'headerFullLocation': 'Köpenick, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4672000045, 'lng': 13.5864720109777},
    'sw': {'lat': 52.458199995499996, 'lng': 13.571727989022301}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f33c090e4b0a2c6ac660dd4',
        'name': 'Segafredo',
        'location': {'lat': 52.45866057043067,
         'lng': 13.576802069847945,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45866057043067,
           'lng': 13.576802069847945}],
         'distance': 475,
         'cc': 'DE',
         'city': 'Berlin - Köpenick',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin-Köpenick', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f33c090e4b0a2c6ac660dd4-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e984450ba020e22c15a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Köpenick',
   'headerFullLocation': 'Köpenick, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.434800004500005,
     'lng': 13.59936659060995},
    'sw': {'lat': 52.4257999955, 'lng': 13.584633409390051}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9971cf843322f0b83e'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Müggelheim',
   'headerFullLocation': 'Müggelheim, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.419400004500005,
     'lng': 13.670764017881247},
    'sw': {'lat': 52.4103999955, 'lng': 13.656035982118752}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50e6d4fce4b01db8082a2ccd',
        'name': 'Café No. 1',
        'location': {'address': 'Gosener Damm 1',
         'lat': 52.41054258365528,
         'lng': 13.665124025955164,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.41054258365528,
           'lng': 13.665124025955164}],
         'distance': 498,
         'postalCode': '12559',
         'cc': 'DE',
         'city': 'Müggelheim',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gosener Damm 1',
          '12559 Berlin-Müggelheim',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50e6d4fce4b01db8082a2ccd-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e99556f332995d21025'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Friedrichshagen',
   'headerFullLocation': 'Friedrichshagen, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4631000045, 'lng': 13.643571324495884},
    'sw': {'lat': 52.454099995499995, 'lng': 13.628828675504117}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e99f20935015a770680'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Rahnsdorf',
   'headerFullLocation': 'Rahnsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.448300004500005,
     'lng': 13.710768847841189},
    'sw': {'lat': 52.4392999955, 'lng': 13.696031152158811}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9aa5421e17cce9bc41'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Hellersdorf',
   'headerFullLocation': 'Hellersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5280000045, 'lng': 13.59568221046937},
    'sw': {'lat': 52.518999995499996, 'lng': 13.58091778953063}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9a7694ba313bdae592'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Kaulsdorf',
   'headerFullLocation': 'Kaulsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5072000045, 'lng': 13.595178717059866},
    'sw': {'lat': 52.498199995499995, 'lng': 13.580421282940133}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9bebf5db5626df57be'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Mahlsdorf',
   'headerFullLocation': 'Mahlsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5071000045, 'lng': 13.623878700274965},
    'sw': {'lat': 52.4980999955, 'lng': 13.609121299725036}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9c368fe872251551c9'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Hellersdorf',
   'headerFullLocation': 'Hellersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5417000045, 'lng': 13.620884513756222},
    'sw': {'lat': 52.532699995499996, 'lng': 13.606115486243779}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9cc656a10ca6a806ce'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Hellersdorf',
   'headerFullLocation': 'Hellersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5458000045, 'lng': 13.597485203422606},
    'sw': {'lat': 52.5367999955, 'lng': 13.582714796577394}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9ce76a681dc8e694a6'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Marzahner Promenade',
   'headerFullLocation': 'Marzahner Promenade, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5546000045, 'lng': 13.573386684244959},
    'sw': {'lat': 52.5455999955, 'lng': 13.558613315755043}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9de76a681dc8e6978a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Marzahn',
   'headerFullLocation': 'Marzahn, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.541400004500005,
     'lng': 13.544084463299368},
    'sw': {'lat': 52.5323999955, 'lng': 13.529315536700631}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9e4467db32a3b1ec62'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Biesdorf',
   'headerFullLocation': 'Alt-Biesdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5120000045, 'lng': 13.566479522851488},
    'sw': {'lat': 52.5029999955, 'lng': 13.551720477148514}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9e3a1e82333e920396'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Springpfuhl',
   'headerFullLocation': 'Springpfuhl, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5436000045, 'lng': 13.572384833336999},
    'sw': {'lat': 52.534599995499995, 'lng': 13.557615166663}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9ee2d2433c21b8387e'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Marzahner Promenade',
   'headerFullLocation': 'Marzahner Promenade, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5609000045, 'lng': 13.571887744851002},
    'sw': {'lat': 52.551899995499994, 'lng': 13.557112255148999}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9ee5bf882cda888216'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Marzahn',
   'headerFullLocation': 'Marzahn, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5710000045, 'lng': 13.574889446009827},
    'sw': {'lat': 52.561999995499995, 'lng': 13.560110553990175}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9fcce9aa16743d6de2'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Residenzstraße',
   'headerFullLocation': 'Residenzstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5712000045, 'lng': 13.340689479706368},
    'sw': {'lat': 52.562199995499995, 'lng': 13.32591052029363}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a0864004420d83e4ca38bad',
        'name': "Schäfer's - Café am Kutschi",
        'location': {'lat': 52.564152,
         'lng': 13.328546,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.564152,
           'lng': 13.328546}],
         'distance': 428,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a0864004420d83e4ca38bad-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16e9ff20935015a771d8b'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Malchow',
   'headerFullLocation': 'Malchow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5860000045, 'lng': 13.498191974353611},
    'sw': {'lat': 52.576999995499996, 'lng': 13.483408025646389}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea0f6c312434330e0c1'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lichtenberg',
   'headerFullLocation': 'Lichtenberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5545000045, 'lng': 13.511986667413115},
    'sw': {'lat': 52.545499995499995, 'lng': 13.497213332586885}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ccd7ccc2dc437045dacce08',
        'name': 'Storchenback & Café',
        'location': {'address': 'Hauptstr. 9',
         'crossStreet': 'EKZ Storchenhof',
         'lat': 52.547795971118255,
         'lng': 13.50449227148548,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547795971118255,
           'lng': 13.50449227148548}],
         'distance': 245,
         'postalCode': '13055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hauptstr. 9 (EKZ Storchenhof)',
          '13055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ccd7ccc2dc437045dacce08-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4db157db5da32cf2df5955e1',
        'name': 'Café K3',
        'location': {'address': 'Konrad-Wolf-Str. 3',
         'lat': 52.5484310180344,
         'lng': 13.501651332911933,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5484310180344,
           'lng': 13.501651332911933}],
         'distance': 265,
         'postalCode': '13055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Konrad-Wolf-Str. 3',
          '13055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4db157db5da32cf2df5955e1-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea0ebf5db5626df69c4'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lichtenberg',
   'headerFullLocation': 'Lichtenberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.544600004500005,
     'lng': 13.503385001551782},
    'sw': {'lat': 52.5355999955, 'lng': 13.488614998448218}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d8f40f45091a1cd129fa101',
        'name': 'Eiscafe Heidi',
        'location': {'address': 'Konrad-Wolf-Str. 111',
         'lat': 52.54356302905851,
         'lng': 13.491826346682895,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54356302905851,
           'lng': 13.491826346682895}],
         'distance': 477,
         'postalCode': '13055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Konrad-Wolf-Str. 111',
          '13055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d8f40f45091a1cd129fa101-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea0c4e5cf3a838f4ef4'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Falkenberg',
   'headerFullLocation': 'Falkenberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.575600004500004,
     'lng': 13.548890221130847},
    'sw': {'lat': 52.5665999955, 'lng': 13.534109778869151}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b49ef15f964a520417626e3',
        'name': 'Café Lehmsofa',
        'location': {'address': 'Dorfstraße 4',
         'lat': 52.570004969875995,
         'lng': 13.536965075664517,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.570004969875995,
           'lng': 13.536965075664517}],
         'distance': 330,
         'postalCode': '13057',
         'cc': 'DE',
         'city': 'Falkenberg',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dorfstraße 4',
          '13057 Berlin-Falkenberg',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b49ef15f964a520417626e3-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea1e998a41dc43b2af6'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wartenberg',
   'headerFullLocation': 'Wartenberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5854000045, 'lng': 13.529091873176911},
    'sw': {'lat': 52.5763999955, 'lng': 13.514308126823087}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea14450ba020e22e3d5'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Weißensee',
   'headerFullLocation': 'Weißensee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5610000045, 'lng': 13.455587761689195},
    'sw': {'lat': 52.5519999955, 'lng': 13.440812238310805}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6ecc86f964a5200ecb2ce3',
        'name': 'Café Mirbach',
        'location': {'address': 'Behaimstr. 64',
         'crossStreet': 'Am Mirbachplatz',
         'lat': 52.552555191409745,
         'lng': 13.448978529852974,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.552555191409745,
           'lng': 13.448978529852974}],
         'distance': 442,
         'postalCode': '13086',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Behaimstr. 64 (Am Mirbachplatz)',
          '13086 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6ecc86f964a5200ecb2ce3-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea1ebf7ed0526833bcd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Buschallee',
   'headerFullLocation': 'Buschallee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5648000045, 'lng': 13.478188401614064},
    'sw': {'lat': 52.555799995499996, 'lng': 13.463411598385937}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea2556f332995d232b6'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Heinersdorf',
   'headerFullLocation': 'Heinersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.575200004500005,
     'lng': 13.448390153720675},
    'sw': {'lat': 52.5661999955, 'lng': 13.433609846279326}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea2d859ad1d9fdf226b'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Buch',
   'headerFullLocation': 'Buch, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.6374000045, 'lng': 13.490300655133142},
    'sw': {'lat': 52.6283999955, 'lng': 13.47549934486686}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea388be05604b78c88f'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Französisch Buchholz',
   'headerFullLocation': 'Französisch Buchholz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.6245000045, 'lng': 13.445398474018347},
    'sw': {'lat': 52.615499995499995, 'lng': 13.430601525981654}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea32158a34dc8412081'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Blankenburg',
   'headerFullLocation': 'Blankenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.596600004500004,
     'lng': 13.465293762399146},
    'sw': {'lat': 52.5875999955, 'lng': 13.450506237600855}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51fd2d0c498ea00976319d34',
        'name': 'Kaffee-Haus Madlen',
        'location': {'lat': 52.593037155451476,
         'lng': 13.457036553644249,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.593037155451476,
           'lng': 13.457036553644249}],
         'distance': 119,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51fd2d0c498ea00976319d34-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea3bea27a5fc65222ae'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Niederschönhausen',
   'headerFullLocation': 'Niederschönhausen, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.5869000045, 'lng': 13.407092126125372},
    'sw': {'lat': 52.5778999955, 'lng': 13.392307873874627}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5708ced5498e19cf02eae3ee',
        'name': 'Auszeit',
        'location': {'address': 'Hermann-Hesse-Str. 15',
         'lat': 52.580399,
         'lng': 13.400898,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.580399,
           'lng': 13.400898}],
         'distance': 237,
         'postalCode': '13156',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermann-Hesse-Str. 15',
          '13156 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5708ced5498e19cf02eae3ee-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c42e314d691c9b69ffb8e0a',
        'name': 'Cafe Kubitza',
        'location': {'address': 'Dietzgenstr. 22',
         'lat': 52.581686631270166,
         'lng': 13.404260564864577,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.581686631270166,
           'lng': 13.404260564864577}],
         'distance': 318,
         'postalCode': '13156',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dietzgenstr. 22',
          '13156 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1d0941735',
          'name': 'Dessert Shop',
          'pluralName': 'Dessert Shops',
          'shortName': 'Desserts',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/dessert_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c42e314d691c9b69ffb8e0a-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5277b07911d2e7fac93109f8',
        'name': 'Bäckerei & Café Arrey',
        'location': {'address': 'Pastor-Niemöller-Platz 10',
         'lat': 52.579437255859375,
         'lng': 13.397335052490234,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.579437255859375,
           'lng': 13.397335052490234}],
         'distance': 366,
         'postalCode': '13156',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pastor-Niemöller-Platz 10',
          '13156 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d143941735',
          'name': 'Breakfast Spot',
          'pluralName': 'Breakfast Spots',
          'shortName': 'Breakfast',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/breakfast_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5277b07911d2e7fac93109f8-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea42158a34dc8412346'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Nordend',
   'headerFullLocation': 'Nordend, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.597700004500005,
     'lng': 13.390893948015076},
    'sw': {'lat': 52.5886999955, 'lng': 13.376106051984923}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea47694ba313bdb0d96'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Blankenfelde',
   'headerFullLocation': 'Blankenfelde, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.6275000045, 'lng': 13.405198981106142},
    'sw': {'lat': 52.618499995499995, 'lng': 13.390401018893858}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea4f2dca11a89d87696'},
  'response': {'headerLocation': 'Pankow',
   'headerFullLocation': 'Pankow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 10,
   'suggestedBounds': {'ne': {'lat': 52.5740000045, 'lng': 13.41578995149969},
    'sw': {'lat': 52.564999995499996, 'lng': 13.40101004850031}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5475d3f4498e156b2209f652',
        'name': 'liebes bisschen',
        'location': {'address': 'Berliner Str. 6',
         'crossStreet': 'Schulstr.',
         'lat': 52.569593,
         'lng': 13.410874,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.569593,
           'lng': 13.410874}],
         'distance': 167,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berliner Str. 6 (Schulstr.)',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5475d3f4498e156b2209f652-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d2889b2ebacb1f71a0af24f',
        'name': 'Eden*****',
        'location': {'address': 'Breite Str. 43a',
         'lat': 52.57134225789132,
         'lng': 13.411595043768896,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57134225789132,
           'lng': 13.411595043768896}],
         'distance': 297,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Breite Str. 43a',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d2889b2ebacb1f71a0af24f-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56e540d6498e13426cb5fef0',
        'name': 'Wo der Bär den Honig holt',
        'location': {'address': 'Florastrasse 37',
         'lat': 52.56571158842466,
         'lng': 13.407565231482836,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.56571158842466,
           'lng': 13.407565231482836}],
         'distance': 425,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Florastrasse 37',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56e540d6498e13426cb5fef0-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '562363f4498ead0b0e39238e',
        'name': 'Schäfer’s Marktcafé',
        'location': {'address': 'Ossietskystraße 1',
         'lat': 52.57117009588285,
         'lng': 13.409052248971502,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57117009588285,
           'lng': 13.409052248971502}],
         'distance': 191,
         'postalCode': '14168',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ossietskystraße 1',
          '14168 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-562363f4498ead0b0e39238e-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b41beb0f964a520acc825e3',
        'name': 'Rosenrot',
        'location': {'address': 'Ossietzkystr. 2',
         'lat': 52.57128364104611,
         'lng': 13.409001231193542,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57128364104611,
           'lng': 13.409001231193542}],
         'distance': 202,
         'postalCode': '13187',
         'cc': 'DE',
         'neighborhood': 'Pankow',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ossietzkystr. 2',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b41beb0f964a520acc825e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bfcdc2af61dc9b69a309ede',
        'name': 'Café Nord',
        'location': {'address': 'Grunowstraße 21',
         'crossStreet': 'Schulstraße',
         'lat': 52.569048988813115,
         'lng': 13.408895305942314,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.569048988813115,
           'lng': 13.408895305942314}],
         'distance': 60,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunowstraße 21 (Schulstraße)',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bfcdc2af61dc9b69a309ede-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f3a5602e4b00bffdf0dd7ea',
        'name': 'Floras Backmühle',
        'location': {'address': 'Florastr. 51',
         'lat': 52.566921071243634,
         'lng': 13.41057300567627,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.566921071243634,
           'lng': 13.41057300567627}],
         'distance': 322,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Florastr. 51', '13187 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f3a5602e4b00bffdf0dd7ea-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50ae2fade4b0441cd7d3112a',
        'name': 'Eiscafe Capriccio',
        'location': {'address': 'Rathaus-Center Pankow',
         'lat': 52.57003105054416,
         'lng': 13.403778959903894,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57003105054416,
           'lng': 13.403778959903894}],
         'distance': 318,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rathaus-Center Pankow',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50ae2fade4b0441cd7d3112a-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52e663ca498e5c0cd49e6815',
        'name': 'Café Schön & Gut | Weinhandlung',
        'location': {'address': 'Neue Schönholzer Str. 2',
         'lat': 52.568896997431466,
         'lng': 13.40155005455017,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.568896997431466,
           'lng': 13.40155005455017}],
         'distance': 468,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Neue Schönholzer Str. 2',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '80480936'}},
       'referralId': 'e-0-52e663ca498e5c0cd49e6815-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e7b3154b8f7c102861c6382',
        'name': 'Barista Coffee Shop',
        'location': {'address': 'Breite Str 2a',
         'lat': 52.57221552434196,
         'lng': 13.414013135417626,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57221552434196,
           'lng': 13.414013135417626}],
         'distance': 485,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Breite Str 2a', '13187 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e7b3154b8f7c102861c6382-9'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea5726940047d4d398d'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Vinetastraße',
   'headerFullLocation': 'Vinetastraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.568800004500005,
     'lng': 13.429289075374083},
    'sw': {'lat': 52.5597999955, 'lng': 13.414510924625919}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea5e998a41dc43b3cd0'},
  'response': {'headerLocation': 'Leopoldplatz',
   'headerFullLocation': 'Leopoldplatz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 6,
   'suggestedBounds': {'ne': {'lat': 52.553600004500005,
     'lng': 13.37288651593101},
    'sw': {'lat': 52.5445999955, 'lng': 13.358113484068992}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bfd72e6f7c82d7f55348e04',
        'name': 'Café Cralle',
        'location': {'address': 'Hochstädter Str. 10a',
         'lat': 52.55061901645171,
         'lng': 13.363448964664057,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55061901645171,
           'lng': 13.363448964664057}],
         'distance': 218,
         'postalCode': '13347',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hochstädter Str. 10a',
          '13347 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bfd72e6f7c82d7f55348e04-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5af8443d7e4b4e0030a38528',
        'name': 'Motte',
        'location': {'address': 'Malplaquetstrasse',
         'lat': 52.549521,
         'lng': 13.361872,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.549521,
           'lng': 13.361872}],
         'distance': 250,
         'cc': 'DE',
         'neighborhood': 'Leopoldplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Malplaquetstrasse', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5af8443d7e4b4e0030a38528-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ebbe7089a52d00625143d5b',
        'name': 'Café Largo',
        'location': {'address': 'Malplaquetstr. 33',
         'crossStreet': 'Utrechter Str.',
         'lat': 52.55069431563843,
         'lng': 13.359548799632643,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55069431563843,
           'lng': 13.359548799632643}],
         'distance': 440,
         'postalCode': '13347',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Malplaquetstr. 33 (Utrechter Str.)',
          '13347 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ebbe7089a52d00625143d5b-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0833fcf964a520290623e3',
        'name': 'Auf der Suche nach dem verlorenen Glück',
        'location': {'address': 'Nazarethkirchstr. 43',
         'lat': 52.54895295253606,
         'lng': 13.361233553708391,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54895295253606,
           'lng': 13.361233553708391}],
         'distance': 289,
         'postalCode': '13347',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Nazarethkirchstr. 43',
          '13347 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0833fcf964a520290623e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58b57d0119b1ad10adee79af',
        'name': 'MARS Küche & Bar',
        'location': {'address': 'Gerichtstraße 35',
         'lat': 52.545074,
         'lng': 13.366457,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.545074,
           'lng': 13.366457}],
         'distance': 452,
         'postalCode': '13347',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gerichtstraße 35',
          '13347 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58b57d0119b1ad10adee79af-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c4c219ac9e4ef3b299a3a11',
        'name': 'Bäckerei & Café Josef',
        'location': {'address': 'Reinickendorfer Str. 51',
         'lat': 52.55107131447317,
         'lng': 13.368043899536133,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55107131447317,
           'lng': 13.368043899536133}],
         'distance': 278,
         'postalCode': '13347',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reinickendorfer Str. 51',
          '13347 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c4c219ac9e4ef3b299a3a11-5'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea60cc1d6096fcb43d5'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schillerpark',
   'headerFullLocation': 'Schillerpark, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.5625000045, 'lng': 13.354688014273993},
    'sw': {'lat': 52.5534999955, 'lng': 13.339911985726008}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e9688b0b8f7d8c690de1118',
        'name': 'Café Tara',
        'location': {'address': 'Müllerstr. 113a',
         'lat': 52.55571461971134,
         'lng': 13.3426869356019,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55571461971134,
           'lng': 13.3426869356019}],
         'distance': 402,
         'postalCode': '13349',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Müllerstr. 113a',
          '13349 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e9688b0b8f7d8c690de1118-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58302279c5f8a71707a11f68',
        'name': 'Diamantfabrikken',
        'location': {'address': 'Ofener Str. 1',
         'lat': 52.555298,
         'lng': 13.343908,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.555298,
           'lng': 13.343908}],
         'distance': 378,
         'postalCode': '13349',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ofener Str. 1', '13349 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58302279c5f8a71707a11f68-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e2168465779810008d3fb85',
        'name': 'Shisha Bar Berlin - Wedding - Lale Cafe, Bar, Lounge',
        'location': {'address': 'Müllerstraße 121',
         'lat': 52.553996,
         'lng': 13.345216,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.553996,
           'lng': 13.345216}],
         'distance': 467,
         'postalCode': '13349',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Müllerstraße 121',
          '13349 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d119941735',
          'name': 'Hookah Bar',
          'pluralName': 'Hookah Bars',
          'shortName': 'Hookah Bar',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/nightlife/hookahbar_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '581047594'}},
       'referralId': 'e-0-5e2168465779810008d3fb85-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea6ebf5db5626df81eb'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Rehberge',
   'headerFullLocation': 'Rehberge, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5552000045, 'lng': 13.340186785238089},
    'sw': {'lat': 52.5461999955, 'lng': 13.325413214761912}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50718287e4b02bfe662a736d',
        'name': 'Schatulle',
        'location': {'lat': 52.554296,
         'lng': 13.331135,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.554296,
           'lng': 13.331135}],
         'distance': 415,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50718287e4b02bfe662a736d-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea6c4e5cf3a838f66ea'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Sprengelkiez',
   'headerFullLocation': 'Sprengelkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.546100004500005,
     'lng': 13.356885253892543},
    'sw': {'lat': 52.5370999955, 'lng': 13.342114746107459}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '558a9423498efce8c348ae38',
        'name': 'Lost-Place Shop',
        'location': {'lat': 52.54101975889071,
         'lng': 13.348464597509768,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54101975889071,
           'lng': 13.348464597509768}],
         'distance': 95,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-558a9423498efce8c348ae38-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dfc58f4ae6033b2a4745611',
        'name': 'Dazwischen',
        'location': {'address': 'Torfstr. 16',
         'lat': 52.54150315194125,
         'lng': 13.350528020121335,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54150315194125,
           'lng': 13.350528020121335}],
         'distance': 70,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torfstr. 16', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dfc58f4ae6033b2a4745611-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea7b8c07577f77bc00a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Humboldthain',
   'headerFullLocation': 'Humboldthain, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.546100004500005,
     'lng': 13.397785253892541},
    'sw': {'lat': 52.5370999955, 'lng': 13.383014746107458}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c595b042fa89c7474a11323',
        'name': 'Freysinn',
        'location': {'address': 'Jasmunder Str. 5',
         'crossStreet': 'Usedomer Str.',
         'lat': 52.53958224408168,
         'lng': 13.388077852841825,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53958224408168,
           'lng': 13.388077852841825}],
         'distance': 274,
         'postalCode': '13335',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jasmunder Str. 5 (Usedomer Str.)',
          '13335 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c595b042fa89c7474a11323-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '588a07d9158b964a9c35b360',
        'name': 'Unicorn.Canteen',
        'location': {'address': 'Brunnenstr. 65',
         'lat': 52.540751,
         'lng': 13.394369,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.540751,
           'lng': 13.394369}],
         'distance': 284,
         'postalCode': '13355',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brunnenstr. 65',
          '13355 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-588a07d9158b964a9c35b360-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51bd82dd498ed2fde4612c47',
        'name': 'Cafe Wimpernboutique',
        'location': {'address': 'Brunnenstrasse 57',
         'lat': 52.5392373032118,
         'lng': 13.395480811827547,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5392373032118,
           'lng': 13.395480811827547}],
         'distance': 433,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brunnenstrasse 57', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51bd82dd498ed2fde4612c47-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea78d3f8f53d3571187'},
  'response': {'headerLocation': 'Humboldthain',
   'headerFullLocation': 'Humboldthain, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 6,
   'suggestedBounds': {'ne': {'lat': 52.5547000045, 'lng': 13.390186701076898},
    'sw': {'lat': 52.545699995499994, 'lng': 13.375413298923101}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '514e02b7e4b0c56a35535ff0',
        'name': 'Il Milanese del Tacco',
        'location': {'address': 'Stettiner Str. 63',
         'lat': 52.5517715972638,
         'lng': 13.3841072406509,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5517715972638,
           'lng': 13.3841072406509}],
         'distance': 196,
         'postalCode': '13357',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stettiner Str. 63',
          '13357 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1f5941735',
          'name': 'Gourmet Shop',
          'pluralName': 'Gourmet Shops',
          'shortName': 'Gourmet',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/food_gourmet_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-514e02b7e4b0c56a35535ff0-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cb6bd8555af224b1f0c9c7e',
        'name': "Dunkin'",
        'location': {'address': 'Badstr. 4',
         'lat': 52.549693,
         'lng': 13.38762,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.549693,
           'lng': 13.38762}],
         'distance': 331,
         'postalCode': '13357',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Badstr. 4', '13357 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cb6bd8555af224b1f0c9c7e-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c4aaf0346240f477a253df2',
        'name': 'Lichtburg',
        'location': {'address': 'Behmstr. 9',
         'lat': 52.55024598896703,
         'lng': 13.388060612939862,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55024598896703,
           'lng': 13.388060612939862}],
         'distance': 356,
         'postalCode': '13357',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Behmstr. 9', '13357 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '507953955'}},
       'referralId': 'e-0-4c4aaf0346240f477a253df2-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54aead6b498eb893c9ed343c',
        'name': 'Kız Kulesi',
        'location': {'address': 'Badstr. 12',
         'lat': 52.55053132739258,
         'lng': 13.384896916999402,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55053132739258,
           'lng': 13.384896916999402}],
         'distance': 146,
         'postalCode': '13357',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Badstr. 12', '13357 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54aead6b498eb893c9ed343c-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57d4fc6b498e5a4997252009',
        'name': 'Coffee & Vino',
        'location': {'address': 'Badstr. 44',
         'lat': 52.55286856030143,
         'lng': 13.37848037481308,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55286856030143,
           'lng': 13.37848037481308}],
         'distance': 416,
         'postalCode': '13357',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Badstr. 44', '13357 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57d4fc6b498e5a4997252009-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e2ab2b16284b96d7b7f760b',
        'name': 'Gelati Eis Caffe',
        'location': {'address': 'Badstr. 4',
         'lat': 52.5498416705648,
         'lng': 13.388817928443906,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5498416705648,
           'lng': 13.388817928443906}],
         'distance': 409,
         'postalCode': '13357',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Badstr. 4', '13357 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e2ab2b16284b96d7b7f760b-5'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea8c656a10ca6a83344'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Gesundbrunnen',
   'headerFullLocation': 'Gesundbrunnen, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5644000045, 'lng': 13.392488334246801},
    'sw': {'lat': 52.5553999955, 'lng': 13.377711665753198}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '599091d54940bc65f08849a7',
        'name': 'Rosa Parks Café',
        'location': {'address': 'Soldiner Str. 32',
         'lat': 52.559296,
         'lng': 13.384547,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.559296,
           'lng': 13.384547}],
         'distance': 76,
         'postalCode': '13359',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Soldiner Str. 32',
          '13359 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-599091d54940bc65f08849a7-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '574823bb498efb864a70fc40',
        'name': 'Dodici Café XII',
        'location': {'address': 'Osloerstr.18',
         'lat': 52.55604202705678,
         'lng': 13.383269448735605,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55604202705678,
           'lng': 13.383269448735605}],
         'distance': 446,
         'postalCode': '13359',
         'cc': 'DE',
         'city': 'Gesundbrunnen',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Osloerstr.18',
          '13359 Gesundbrunnen',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-574823bb498efb864a70fc40-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea8726940047d4d4567'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Scharnweberstraße',
   'headerFullLocation': 'Scharnweberstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.578400004500004,
     'lng': 13.32979069304659},
    'sw': {'lat': 52.5693999955, 'lng': 13.31500930695341}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a390ba4345cbe568112a3e3',
        'name': "Victoria's Café",
        'location': {'address': 'Auguste-Viktoria-Allee 81',
         'lat': 52.57022642,
         'lng': 13.32117276,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57022642,
           'lng': 13.32117276}],
         'distance': 417,
         'postalCode': '13403',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Auguste-Viktoria-Allee 81',
          '13403 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '558606758'}},
       'referralId': 'e-0-5a390ba4345cbe568112a3e3-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea80cc1d6096fcb4e48'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Flughafen Tegel',
   'headerFullLocation': 'Flughafen Tegel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.564100004500006,
     'lng': 13.304088283722395},
    'sw': {'lat': 52.5550999955, 'lng': 13.289311716277604}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea95111134f6bbb3362'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Residenzstraße',
   'headerFullLocation': 'Residenzstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5772000045, 'lng': 13.358590490787446},
    'sw': {'lat': 52.568199995499995, 'lng': 13.343809509212555}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ea9d91d7d1d4943e499'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Residenzstraße',
   'headerFullLocation': 'Residenzstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.572400004500004,
     'lng': 13.378789681893968},
    'sw': {'lat': 52.5633999955, 'lng': 13.36401031810603}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eaa69bc8506c4c42d45'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wittenau',
   'headerFullLocation': 'Wittenau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.6065000045, 'lng': 13.35299543337625},
    'sw': {'lat': 52.597499995499994, 'lng': 13.338204566623748}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eaa368fe8722515894c'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wittenau',
   'headerFullLocation': 'Wittenau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5950000045, 'lng': 13.335793492433835},
    'sw': {'lat': 52.585999995499996, 'lng': 13.321006507566166}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eaacce9aa16743d9bb5'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Märkisches Viertel',
   'headerFullLocation': 'Märkisches Viertel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.6021000045, 'lng': 13.36579469059927},
    'sw': {'lat': 52.5930999955, 'lng': 13.35100530940073}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b588aa5f964a520f15c28e3',
        'name': 'Blixen Coffee Shop',
        'location': {'address': 'Wilhelmsruher Damm 140',
         'lat': 52.59730826583849,
         'lng': 13.355109453256432,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.59730826583849,
           'lng': 13.355109453256432}],
         'distance': 224,
         'postalCode': '13439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilhelmsruher Damm 140',
          '13439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b588aa5f964a520f15c28e3-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eabc699df34c85ccc7f'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Frohnau',
   'headerFullLocation': 'Frohnau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.6444000045, 'lng': 13.297001839379217},
    'sw': {'lat': 52.635399995499995, 'lng': 13.282198160620784}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eabf32ddb151ee34e6f'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Hermsdorf',
   'headerFullLocation': 'Hermsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.6216000045, 'lng': 13.314897983918819},
    'sw': {'lat': 52.6125999955, 'lng': 13.30010201608118}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b703407f964a520730b2de3',
        'name': 'Feinbäckerei & Konditorei Laufer',
        'location': {'address': 'Heinsestr. 37',
         'lat': 52.617647416489355,
         'lng': 13.305875658988953,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.617647416489355,
           'lng': 13.305875658988953}],
         'distance': 125,
         'postalCode': '13467',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Heinsestr. 37', '13467 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b703407f964a520730b2de3-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eac164c641f7bb5cd59'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lübars',
   'headerFullLocation': 'Lübars, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.6164000045, 'lng': 13.349597105329698},
    'sw': {'lat': 52.607399995499996, 'lng': 13.334802894670302}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eac92e219640def8e82'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schulzendorf',
   'headerFullLocation': 'Schulzendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.616700004500004,
     'lng': 13.256197156010204},
    'sw': {'lat': 52.6076999955, 'lng': 13.241402843989794}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eacbea27a5fc652453b'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tegel',
   'headerFullLocation': 'Tegel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5884000045, 'lng': 13.24779237909621},
    'sw': {'lat': 52.5793999955, 'lng': 13.233007620903788}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ead66505c5f6f86be7d'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tegel',
   'headerFullLocation': 'Tegel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.581000004500005,
     'lng': 13.27909113132384},
    'sw': {'lat': 52.5719999955, 'lng': 13.264308868676158}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ead556f332995d25ead'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tegel',
   'headerFullLocation': 'Tegel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5937000045, 'lng': 13.30799327310578},
    'sw': {'lat': 52.584699995499996, 'lng': 13.29320672689422}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16ead6e16037dc72156bd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Spandau',
   'headerFullLocation': 'Spandau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5355000045, 'lng': 13.186783471162519},
    'sw': {'lat': 52.5264999955, 'lng': 13.17201652883748}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eaec656a10ca6a84aae'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Spandau',
   'headerFullLocation': 'Spandau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5482000045, 'lng': 13.189785607207083},
    'sw': {'lat': 52.5391999955, 'lng': 13.175014392792916}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a819c1e2bf9a97d77a13b13',
        'name': 'BaristaSoul',
        'location': {'address': 'An der Kappe 114a',
         'lat': 52.5406712855721,
         'lng': 13.179699182510376,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5406712855721,
           'lng': 13.179699182510376}],
         'distance': 383,
         'postalCode': '13583',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['An der Kappe 114a',
          '13583 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '478099764'}},
       'referralId': 'e-0-5a819c1e2bf9a97d77a13b13-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57aedb72498e1119f9508139',
        'name': 'Bäckerei Café Zeppelin',
        'location': {'lat': 52.547437,
         'lng': 13.184264,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547437,
           'lng': 13.184264}],
         'distance': 434,
         'postalCode': '13583',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['13583 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16a941735',
          'name': 'Bakery',
          'pluralName': 'Bakeries',
          'shortName': 'Bakery',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57aedb72498e1119f9508139-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eae15cbfb5134f2630a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Spandau',
   'headerFullLocation': 'Spandau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5522000045, 'lng': 13.212286280308145},
    'sw': {'lat': 52.5431999955, 'lng': 13.197513719691855}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '566a0719498e24e2e6cd0c72',
        'name': 'Amira Shisha Lounge',
        'location': {'lat': 52.548232,
         'lng': 13.200954,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.548232,
           'lng': 13.200954}],
         'distance': 273,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-566a0719498e24e2e6cd0c72-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eae83e39e1eddae23c4'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Johannesstift',
   'headerFullLocation': 'Johannesstift, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.581200004500005,
     'lng': 13.192791165040259},
    'sw': {'lat': 52.5721999955, 'lng': 13.17800883495974}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eafc656a10ca6a84eb6'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Spandau',
   'headerFullLocation': 'Spandau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.561500004500004,
     'lng': 13.174987845881645},
    'sw': {'lat': 52.5524999955, 'lng': 13.160212154118355}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eafe76a681dc8e6dd61'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Staaken',
   'headerFullLocation': 'Staaken, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.539000004500004,
     'lng': 13.147884059676661},
    'sw': {'lat': 52.5299999955, 'lng': 13.133115940323338}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb04467db32a3b232a6'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wilhelmstadt',
   'headerFullLocation': 'Wilhelmstadt, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5193000045, 'lng': 13.174580748762965},
    'sw': {'lat': 52.5102999955, 'lng': 13.159819251237034}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb07694ba313bdb3bd6'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Pichelsdorf',
   'headerFullLocation': 'Pichelsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.516100004500004,
     'lng': 13.203580211312229},
    'sw': {'lat': 52.5070999955, 'lng': 13.18881978868777}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb04450ba020e231fb8'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Pichelsdorf',
   'headerFullLocation': 'Pichelsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5317000045, 'lng': 13.226882832341705},
    'sw': {'lat': 52.5226999955, 'lng': 13.212117167658295}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f2c2ec6e4b0390a21ea68bb',
        'name': 'IKEA Restaurant & Café',
        'location': {'address': 'Gewerbehof 13',
         'lat': 52.52871876324623,
         'lng': 13.214583393071829,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52871876324623,
           'lng': 13.214583393071829}],
         'distance': 373,
         'postalCode': '13597',
         'cc': 'DE',
         'neighborhood': 'Spandau',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gewerbehof 13', '13597 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d128941735',
          'name': 'Cafeteria',
          'pluralName': 'Cafeterias',
          'shortName': 'Cafeteria',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/education/cafeteria_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f2c2ec6e4b0390a21ea68bb-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb166505c5f6f86cd92'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Haselhorst',
   'headerFullLocation': 'Haselhorst, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.550800004500005,
     'lng': 13.242386044704723},
    'sw': {'lat': 52.5417999955, 'lng': 13.227613955295276}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb17694ba313bdb4056'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Charlottenburg-Wilmersdorf',
   'headerFullLocation': 'Charlottenburg-Wilmersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5443000045, 'lng': 13.306484951086306},
    'sw': {'lat': 52.5352999955, 'lng': 13.291715048913693}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb25111134f6bbb5589'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Siemensstadt',
   'headerFullLocation': 'Siemensstadt, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5467000045, 'lng': 13.273485354835092},
    'sw': {'lat': 52.5376999955, 'lng': 13.258714645164908}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb2c4e5cf3a838f9344'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Neu-Westend',
   'headerFullLocation': 'Neu-Westend, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.525300004500004,
     'lng': 13.27568175675618},
    'sw': {'lat': 52.5162999955, 'lng': 13.26091824324382}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb2f5f91049c0f530cd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Neu-Westend',
   'headerFullLocation': 'Neu-Westend, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.5201000045, 'lng': 13.26428088314148},
    'sw': {'lat': 52.5110999955, 'lng': 13.24951911685852}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b851a2af964a520164c31e3',
        'name': 'Wiener Conditorei Caffeehaus am Steubenplatz',
        'location': {'address': 'Reichsstr. 81',
         'lat': 52.51607075125315,
         'lng': 13.260251416623968,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51607075125315,
           'lng': 13.260251416623968}],
         'distance': 233,
         'postalCode': '14052',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reichsstr. 81', '14052 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b851a2af964a520164c31e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4da95fed6a2303012ef2d4d7',
        'name': 'Cafe Kuhn',
        'location': {'address': 'Reichsstraße',
         'crossStreet': 'Rüsternallee',
         'lat': 52.51555307825961,
         'lng': 13.262388034011481,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51555307825961,
           'lng': 13.262388034011481}],
         'distance': 371,
         'postalCode': '14050',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reichsstraße (Rüsternallee)',
          '14050 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4da95fed6a2303012ef2d4d7-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd1b4429854d13a4bfdf94d',
        'name': 'Eis-Café Emporio',
        'location': {'address': 'Koburgallee 3',
         'lat': 52.51971039774569,
         'lng': 13.254940152710097,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51971039774569,
           'lng': 13.254940152710097}],
         'distance': 476,
         'postalCode': '14052',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Koburgallee 3', '14052 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd1b4429854d13a4bfdf94d-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb315cbfb5134f27435'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Pichelsberg',
   'headerFullLocation': 'Pichelsberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.520400004500004,
     'lng': 13.246080933535053},
    'sw': {'lat': 52.5113999955, 'lng': 13.231319066464946}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb3e2d2433c21b88907'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Heerstraße',
   'headerFullLocation': 'Heerstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.506500004500005,
     'lng': 13.252078599567618},
    'sw': {'lat': 52.4974999955, 'lng': 13.237321400432382}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb392e219640defaa36'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 10,
   'suggestedBounds': {'ne': {'lat': 52.5118000045, 'lng': 13.29527948927229},
    'sw': {'lat': 52.5027999955, 'lng': 13.280520510727712}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54846a52498e9dcac1551ec0',
        'name': 'Café Dreikäsehoch Kaiserdamm 20',
        'location': {'address': 'Kaiserdamm 20',
         'lat': 52.51050118268362,
         'lng': 13.286338448524473,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51050118268362,
           'lng': 13.286338448524473}],
         'distance': 371,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kaiserdamm 20', '14057 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '409845324'}},
       'referralId': 'e-0-54846a52498e9dcac1551ec0-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc99754937ca593af00a692',
        'name': 'Bootshaus Stella am Lietzensee',
        'location': {'address': 'Witzlebenplatz 1',
         'lat': 52.50871848046555,
         'lng': 13.29255974476357,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50871848046555,
           'lng': 13.29255974476357}],
         'distance': 353,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Witzlebenplatz 1',
          '14057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc99754937ca593af00a692-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d611ba1ef378cfae07f86a6',
        'name': 'Pianocafé am Lietzensee',
        'location': {'address': 'Neue Kantstr. 20',
         'lat': 52.50636296742098,
         'lng': 13.285157707953752,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50636296742098,
           'lng': 13.285157707953752}],
         'distance': 213,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Neue Kantstr. 20',
          '14057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d611ba1ef378cfae07f86a6-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50e2c3b3e4b0a78b0d05e4b0',
        'name': 'Cafe Phönix',
        'location': {'address': 'Witzlebenstr. 21',
         'crossStreet': 'Suarezstr. 46',
         'lat': 52.50525665283203,
         'lng': 13.293815612792969,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50525665283203,
           'lng': 13.293815612792969}],
         'distance': 460,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Witzlebenstr. 21 (Suarezstr. 46)',
          '14057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '49274701'}},
       'referralId': 'e-0-50e2c3b3e4b0a78b0d05e4b0-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4badf4bdf964a5207a753be3',
        'name': 'Manstein',
        'location': {'address': 'Witzlebenstraße 32',
         'lat': 52.509003,
         'lng': 13.294212,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.509003,
           'lng': 13.294212}],
         'distance': 467,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Witzlebenstraße 32',
          '14057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4badf4bdf964a5207a753be3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52653cce11d2127e5b8e9edb',
        'name': 'Café Suarez',
        'location': {'address': 'Suarezstr. 21',
         'lat': 52.5062423192634,
         'lng': 13.29452788218492,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5062423192634,
           'lng': 13.29452788218492}],
         'distance': 464,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Suarezstr. 21', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52653cce11d2127e5b8e9edb-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fb4f225e4b0eec2052a0efd',
        'name': 'piKant',
        'location': {'lat': 52.50614547729492,
         'lng': 13.294577598571777,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50614547729492,
           'lng': 13.294577598571777}],
         'distance': 470,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fb4f225e4b0eec2052a0efd-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b472c98f964a520512c26e3',
        'name': 'Gusto Giusto',
        'location': {'address': 'Kaiserdamm 110',
         'lat': 52.51070102845878,
         'lng': 13.292645718600735,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51070102845878,
           'lng': 13.292645718600735}],
         'distance': 496,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kaiserdamm 110',
          '14057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1ca941735',
          'name': 'Pizza Place',
          'pluralName': 'Pizza Places',
          'shortName': 'Pizza',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/pizza_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b472c98f964a520512c26e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c4c3989c668e21e1c9931fb',
        'name': 'Stattcafe',
        'location': {'address': 'Suarezstr 31',
         'lat': 52.50325083326409,
         'lng': 13.291116593496081,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50325083326409,
           'lng': 13.291116593496081}],
         'distance': 500,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Suarezstr 31', '14057 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c4c3989c668e21e1c9931fb-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5337fdac498eabe75037f858',
        'name': 'Fräulein Lietz',
        'location': {'address': 'Steifensandstr. 4',
         'lat': 52.508446314247784,
         'lng': 13.294434880446119,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.508446314247784,
           'lng': 13.294434880446119}],
         'distance': 460,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Steifensandstr. 4',
          '14057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5337fdac498eabe75037f858-9'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb43023093e62edf3cc'},
  'response': {'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.5250000045, 'lng': 13.295181706348059},
    'sw': {'lat': 52.515999995499996, 'lng': 13.280418293651943}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cb19a491168a093c17d3423',
        'name': 'Café Reet',
        'location': {'address': 'Klausenerplatz 5',
         'lat': 52.51812725890996,
         'lng': 13.292684555053711,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51812725890996,
           'lng': 13.292684555053711}],
         'distance': 423,
         'postalCode': '14059',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Klausenerplatz 5',
          '14059 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cb19a491168a093c17d3423-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d917a2c7379b60c1e24ce07',
        'name': 'Layali Om Kalthum Cafe',
        'location': {'address': 'Spandauer Damm 65',
         'lat': 52.518743,
         'lng': 13.28783,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.518743,
           'lng': 13.28783}],
         'distance': 195,
         'postalCode': '14059',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Spandauer Damm 65',
          '14059 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d917a2c7379b60c1e24ce07-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cb19e0dcbab236a463eaa73',
        'name': 'Kleine Orangerie am Schloss Charlottenburg',
        'location': {'address': 'Spandauer Damm 20',
         'lat': 52.51986546078823,
         'lng': 13.293798443042727,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51986546078823,
           'lng': 13.293798443042727}],
         'distance': 412,
         'postalCode': '14059',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Spandauer Damm 20',
          '14059 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cb19e0dcbab236a463eaa73-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a3a179dc4df1d7baf4d2445',
        'name': 'Joli Café',
        'location': {'address': 'Heubnerweg',
         'lat': 52.523096,
         'lng': 13.288437,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.523096,
           'lng': 13.288437}],
         'distance': 292,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Heubnerweg', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a3a179dc4df1d7baf4d2445-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bdd86a1645e0f47e7a46b19',
        'name': 'Carpe Diem Bistro',
        'location': {'address': 'Spandauer Damm 102',
         'lat': 52.51847247414217,
         'lng': 13.281805522018324,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51847247414217,
           'lng': 13.281805522018324}],
         'distance': 464,
         'postalCode': '14059',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Spandauer Damm 102',
          '14059 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bdd86a1645e0f47e7a46b19-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb43e071546b3af50ea'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Gatow',
   'headerFullLocation': 'Gatow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4753000045, 'lng': 13.158973367684764},
    'sw': {'lat': 52.466299995499995, 'lng': 13.144226632315236}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb5dfad1e14df218aa4'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wannsee',
   'headerFullLocation': 'Wannsee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4242000045, 'lng': 13.151364819520856},
    'sw': {'lat': 52.4151999955, 'lng': 13.136635180479145}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb5c4e5cf3a838f9fb8'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Nikolassee',
   'headerFullLocation': 'Nikolassee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4508000045, 'lng': 13.209969266043688},
    'sw': {'lat': 52.4417999955, 'lng': 13.195230733956313}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb635436f34a07a08e8'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Museumsinsel',
   'headerFullLocation': 'Museumsinsel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 21,
   'suggestedBounds': {'ne': {'lat': 52.521500004500005,
     'lng': 13.407381118319114},
    'sw': {'lat': 52.5124999955, 'lng': 13.392618881680887}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55782f9e498ee3b164cc75f5',
        'name': 'Pax Coffee',
        'location': {'address': 'Oberwallstraße 20',
         'lat': 52.513906,
         'lng': 13.397219,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513906,
           'lng': 13.397219}],
         'distance': 392,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oberwallstraße 20',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55782f9e498ee3b164cc75f5-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54199179498e6e1206f0b810',
        'name': 'Lunch Time',
        'location': {'address': 'Jägerstr. 34',
         'lat': 52.51427792365403,
         'lng': 13.396987908146501,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51427792365403,
           'lng': 13.396987908146501}],
         'distance': 365,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jägerstr. 34', '10117 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '150176200'}},
       'referralId': 'e-0-54199179498e6e1206f0b810-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '500fbae1e4b06b19286e62d2',
        'name': 'Café im Zeughaus (DHM)',
        'location': {'address': 'Unter den Linden 2',
         'lat': 52.517847285596254,
         'lng': 13.397708451165325,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517847285596254,
           'lng': 13.397708451165325}],
         'distance': 181,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 2',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-500fbae1e4b06b19286e62d2-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0e18d0f964a520f05423e3',
        'name': 'Balzac Coffee',
        'location': {'address': 'Karl-Liebknecht-Str. 5',
         'crossStreet': 'Spandauer Str.',
         'lat': 52.519681063790664,
         'lng': 13.403686798037004,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519681063790664,
           'lng': 13.403686798037004}],
         'distance': 389,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 5 (Spandauer Str.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0e18d0f964a520f05423e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a48a7be75eee46f19ff83bd',
        'name': 'Kaffee Karamell',
        'location': {'address': 'Scharrenstr. 22',
         'lat': 52.51419708479862,
         'lng': 13.405519796740581,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51419708479862,
           'lng': 13.405519796740581}],
         'distance': 487,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Scharrenstr. 22',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a48a7be75eee46f19ff83bd-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6df5f2e4b08610771271c9',
        'name': 'KugelEi-Café',
        'location': {'lat': 52.516566,
         'lng': 13.406955,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516566,
           'lng': 13.406955}],
         'distance': 473,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6df5f2e4b08610771271c9-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc769782f94d13a71e0117f',
        'name': 'Chipps',
        'location': {'address': 'Jägerstr. 35',
         'lat': 52.514473967038725,
         'lng': 13.397836848291707,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.514473967038725,
           'lng': 13.397836848291707}],
         'distance': 317,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jägerstr. 35', '10117 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1d3941735',
          'name': 'Vegetarian / Vegan Restaurant',
          'pluralName': 'Vegetarian / Vegan Restaurants',
          'shortName': 'Vegetarian / Vegan',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/vegetarian_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc769782f94d13a71e0117f-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c3d57cc7d002d7f9ab9af18',
        'name': "Tim's Bakery and Deli",
        'location': {'address': 'Bebelplatz 1',
         'lat': 52.516550985097936,
         'lng': 13.393534512490923,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516550985097936,
           'lng': 13.393534512490923}],
         'distance': 440,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bebelplatz 1', '10117 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c3d57cc7d002d7f9ab9af18-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eedf41d9a52993fb7cfb1ef',
        'name': 'Allegretto Caffè',
        'location': {'address': 'Bodestr. 3',
         'lat': 52.519833,
         'lng': 13.398358,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519833,
           'lng': 13.398358}],
         'distance': 334,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bodestr. 3', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eedf41d9a52993fb7cfb1ef-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6850c9f964a52045712be3',
        'name': 'Restaurant Cum Laude',
        'location': {'address': 'Universitätsstr. 4',
         'lat': 52.51855135055943,
         'lng': 13.394509655752087,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51855135055943,
           'lng': 13.394509655752087}],
         'distance': 410,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Universitätsstr. 4',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6850c9f964a52045712be3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50f6c465e4b052e422df4aa8',
        'name': 'Café im Alten Museum',
        'location': {'address': 'Am Lustgarten',
         'lat': 52.51936767697486,
         'lng': 13.39857816696167,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51936767697486,
           'lng': 13.39857816696167}],
         'distance': 280,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Lustgarten', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50f6c465e4b052e422df4aa8-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55f41f40498e7cc71a0d0632',
        'name': 'Domcafé',
        'location': {'address': 'Am Lustgarten 1',
         'lat': 52.51862016607101,
         'lng': 13.401104807853699,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51862016607101,
           'lng': 13.401104807853699}],
         'distance': 195,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Lustgarten 1',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55f41f40498e7cc71a0d0632-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d4ec4c423a76dcb103863dc',
        'name': 'Food Lounge Berlin',
        'location': {'address': 'Sankt-Wolfgang-Str. 4',
         'lat': 52.520201491769846,
         'lng': 13.402972769396458,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520201491769846,
           'lng': 13.402972769396458}],
         'distance': 409,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sankt-Wolfgang-Str. 4',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d4ec4c423a76dcb103863dc-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc06a05f8219c74b083b110',
        'name': 'CafÄ— Pergamon',
        'location': {'address': 'Bodestr. 1-3',
         'lat': 52.520399155853454,
         'lng': 13.396410942077637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520399155853454,
           'lng': 13.396410942077637}],
         'distance': 449,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bodestr. 1-3', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc06a05f8219c74b083b110-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fe068a8e4b096aa57eefe3e',
        'name': 'Burgcafé',
        'location': {'address': 'Burgstr. 26',
         'crossStreet': 'DG, Raum 506',
         'lat': 52.521019337192,
         'lng': 13.401024341583252,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.521019337192,
           'lng': 13.401024341583252}],
         'distance': 452,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Burgstr. 26 (DG, Raum 506)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fe068a8e4b096aa57eefe3e-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57ac57bc498ed153471494a0',
        'name': 'Back Palace',
        'location': {'address': 'Propststraße 1-4',
         'lat': 52.51695,
         'lng': 13.406853,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51695,
           'lng': 13.406853}],
         'distance': 464,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Propststraße 1-4',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57ac57bc498ed153471494a0-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5127e7bee4b03a531599160b',
        'name': 'Gameduell Coffeemaker',
        'location': {'address': 'Taubenstrasse 24',
         'lat': 52.51385670505711,
         'lng': 13.39547288000693,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51385670505711,
           'lng': 13.39547288000693}],
         'distance': 465,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Taubenstrasse 24', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5127e7bee4b03a531599160b-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cfa405134c1a09353033f0e',
        'name': 'Bäcker Wiedemann',
        'location': {'address': 'Karl-Liebknecht-Str. 5',
         'lat': 52.52017018773914,
         'lng': 13.40459257961874,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52017018773914,
           'lng': 13.40459257961874}],
         'distance': 470,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 5',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cfa405134c1a09353033f0e-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b7fcd07f964a5205d3e30e3',
        'name': 'the coffee shop',
        'location': {'address': 'Hausvogteiplatz 13',
         'crossStreet': 'Niederwallstr.',
         'lat': 52.51304581458592,
         'lng': 13.397366344797774,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51304581458592,
           'lng': 13.397366344797774}],
         'distance': 474,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hausvogteiplatz 13 (Niederwallstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b7fcd07f964a5205d3e30e3-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '572881d6498e8d9e56d37742',
        'name': 'Café & Restaurant Spreeblick',
        'location': {'address': 'Propststr. 9',
         'lat': 52.516152310515814,
         'lng': 13.405863046646118,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516152310515814,
           'lng': 13.405863046646118}],
         'distance': 408,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Propststr. 9', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '184575676'}},
       'referralId': 'e-0-572881d6498e8d9e56d37742-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b699b2ee96d0c002c832626',
        'name': 'Allegretto Gran Caffè',
        'location': {'address': 'Anna-Louisa-Karsch-Str. 2',
         'lat': 52.52063913439294,
         'lng': 13.401193910758593,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52063913439294,
           'lng': 13.401193910758593}],
         'distance': 413,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Anna-Louisa-Karsch-Str. 2',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b699b2ee96d0c002c832626-20'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb6a614367fd9d084e7'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Zehlendorf',
   'headerFullLocation': 'Zehlendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.4413000045, 'lng': 13.245867677201286},
    'sw': {'lat': 52.432299995499996, 'lng': 13.231132322798715}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ba63547f964a520b23b39e3',
        'name': 'Café Krone',
        'location': {'address': 'Argentinische Allee 2',
         'crossStreet': 'Limastr.',
         'lat': 52.4381810599327,
         'lng': 13.233061821513736,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4381810599327,
           'lng': 13.233061821513736}],
         'distance': 399,
         'postalCode': '14163',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Argentinische Allee 2 (Limastr.)',
          '14163 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ba63547f964a520b23b39e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51f52d0d498e29a9db4ac659',
        'name': 'La Piazza',
        'location': {'address': 'Bülowstraße 1–8A',
         'lat': 52.437458314435176,
         'lng': 13.23329327316576,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.437458314435176,
           'lng': 13.23329327316576}],
         'distance': 360,
         'postalCode': '14163',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bülowstraße 1–8A',
          '14163 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51f52d0d498e29a9db4ac659-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb7c699df34c85cf8e8'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Zehlendorf',
   'headerFullLocation': 'Zehlendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4220000045, 'lng': 13.260964452074623},
    'sw': {'lat': 52.412999995499995, 'lng': 13.246235547925378}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb7c656a10ca6a86d14'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Drakestraße',
   'headerFullLocation': 'Drakestraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4257000045, 'lng': 13.28386507007963},
    'sw': {'lat': 52.4166999955, 'lng': 13.269134929920371}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb73e071546b3af5c8c'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Onkel Toms Hütte',
   'headerFullLocation': 'Onkel Toms Hütte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4541000045, 'lng': 13.26466981816516},
    'sw': {'lat': 52.445099995499994, 'lng': 13.249930181834841}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb8b8c07577f77c0040'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Grunewald',
   'headerFullLocation': 'Grunewald, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4876000045, 'lng': 13.243875429106657},
    'sw': {'lat': 52.4785999955, 'lng': 13.229124570893342}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb8c699df34c85cfe14'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Dahlem',
   'headerFullLocation': 'Dahlem, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4634000045, 'lng': 13.290271374720646},
    'sw': {'lat': 52.4543999955, 'lng': 13.275528625279353}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb8a614367fd9d08cf8'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wilmersdorf',
   'headerFullLocation': 'Wilmersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.4779000045, 'lng': 13.319173803308106},
    'sw': {'lat': 52.468899995499996, 'lng': 13.304426196691894}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55e177b1498e7d11eed25f18',
        'name': 'Lotte am Platz',
        'location': {'address': 'Rüdesheimer Platz 1',
         'lat': 52.473191999250005,
         'lng': 13.316996424945875,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.473191999250005,
           'lng': 13.316996424945875}],
         'distance': 353,
         'postalCode': '14197',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rüdesheimer Platz 1',
          '14197 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55e177b1498e7d11eed25f18-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c76146bff1fb60c1214f8a7',
        'name': 'BioBackHaus',
        'location': {'address': 'Rüdesheimer Str. 8',
         'lat': 52.47294020777343,
         'lng': 13.314430976945431,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47294020777343,
           'lng': 13.314430976945431}],
         'distance': 185,
         'postalCode': '14197',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rüdesheimer Str. 8',
          '14197 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c76146bff1fb60c1214f8a7-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb9e998a41dc43b86b7'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schmargendorf',
   'headerFullLocation': 'Schmargendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.4822000045, 'lng': 13.302474523908396},
    'sw': {'lat': 52.473199995499996, 'lng': 13.287725476091603}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51a8f2f6498ef7983d47d58a',
        'name': 'Looms',
        'location': {'address': 'Berkaer Str. 40',
         'crossStreet': 'Kösener Str.',
         'lat': 52.47706417072388,
         'lng': 13.288147842437526,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47706417072388,
           'lng': 13.288147842437526}],
         'distance': 476,
         'postalCode': '14199',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berkaer Str. 40 (Kösener Str.)',
          '14199 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51a8f2f6498ef7983d47d58a-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c5ae0c6d3aee21e09bb6b55',
        'name': 'Coffee Oase',
        'location': {'address': 'Breite Str. 32',
         'lat': 52.47481020871978,
         'lng': 13.292175887527808,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47481020871978,
           'lng': 13.292175887527808}],
         'distance': 377,
         'postalCode': '14199',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Breite Str. 32',
          '14199 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c5ae0c6d3aee21e09bb6b55-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16eb9e2d2433c21b89fdb'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Müggelheim',
   'headerFullLocation': 'Müggelheim, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'cafe',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4045000045, 'lng': 13.72406153089859},
    'sw': {'lat': 52.395499995499996, 'lng': 13.709338469101409}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}}]
In [283]:
#berlin_coffeshops=getNearbyVenues(names=df_plz['zipcode'],
#                                   latitudes=df_plz['latitude'],
#                                   longitudes=df_plz['longitude'],
#                                   categoryId='4bf58dd8d48988d1e0931735'
#                                  )
berlin_coffeshops
Out[283]:
[{'meta': {'code': 200, 'requestId': '5fb16f41dfad1e14df23ba00'},
  'response': {'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 11,
   'suggestedBounds': {'ne': {'lat': 52.5368000045, 'lng': 13.39198368973932},
    'sw': {'lat': 52.5277999955, 'lng': 13.377216310260682}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fd0f671e4b0044b25a40009',
        'name': 'Oslo Kaffebar',
        'location': {'address': 'Eichendorffstr. 13',
         'crossStreet': 'Invalidenstr.',
         'lat': 52.53102915837446,
         'lng': 13.386889100074768,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53102915837446,
           'lng': 13.386889100074768}],
         'distance': 209,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eichendorffstr. 13 (Invalidenstr.)',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fd0f671e4b0044b25a40009-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58b55329fc73d402335a0e73',
        'name': 'R/D',
        'location': {'address': 'Chausseestr. 19',
         'lat': 52.5302338636797,
         'lng': 13.383697271347046,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5302338636797,
           'lng': 13.383697271347046}],
         'distance': 237,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestr. 19',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '486971060'}},
       'referralId': 'e-0-58b55329fc73d402335a0e73-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '577638e1498e545ee0d166f8',
        'name': '19grams',
        'location': {'address': 'Chausseestr. 36',
         'lat': 52.53303691027667,
         'lng': 13.380054366842362,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53303691027667,
           'lng': 13.380054366842362}],
         'distance': 318,
         'postalCode': '10115',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestr. 36',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-577638e1498e545ee0d166f8-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d1e2156e7e5fc00231760e6',
        'name': 'The Barn',
        'location': {'address': 'Invalidenstraße 112',
         'lat': 52.53057,
         'lng': 13.383621,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53057,
           'lng': 13.383621}],
         'distance': 203,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Invalidenstraße 112',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d1e2156e7e5fc00231760e6-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b15069ef964a520eaa723e3',
        'name': 'Café Bondi',
        'location': {'address': 'Eichendorffstr. 5',
         'lat': 52.530319398010086,
         'lng': 13.387454917590597,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.530319398010086,
           'lng': 13.387454917590597}],
         'distance': 293,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eichendorffstr. 5', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b15069ef964a520eaa723e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d81fa2a153d7800087d5c4c',
        'name': 'Espresso House',
        'location': {'lat': 52.53066,
         'lng': 13.383123,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53066,
           'lng': 13.383123}],
         'distance': 208,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d81fa2a153d7800087d5c4c-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fcfbbe7e4b087291e62d8f2',
        'name': 'Karaca',
        'location': {'address': 'Chausseestr. 106',
         'lat': 52.53172205686423,
         'lng': 13.381594054043058,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53172205686423,
           'lng': 13.381594054043058}],
         'distance': 213,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestr. 106',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fcfbbe7e4b087291e62d8f2-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e364f171838f85189b0108c',
        'name': 'Mauercafe',
        'location': {'address': 'Bernauer Straße 117',
         'lat': 52.53422,
         'lng': 13.387949,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53422,
           'lng': 13.387949}],
         'distance': 311,
         'postalCode': '13355',
         'cc': 'DE',
         'neighborhood': 'Gesundbrunnen',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bernauer Straße 117',
          '13355 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e364f171838f85189b0108c-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50acc938e4b0592296dbe885',
        'name': 'Cafe Si',
        'location': {'address': 'Invalidenstr.',
         'lat': 52.531465230280126,
         'lng': 13.385840038910112,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.531465230280126,
           'lng': 13.385840038910112}],
         'distance': 125,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Invalidenstr.', '10115 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50acc938e4b0592296dbe885-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f5c62b9e4b02628c1f0995b',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Julie-Wolfthorn-Str. 1',
         'crossStreet': 'Am Nordbahnhof',
         'lat': 52.53204803428851,
         'lng': 13.384302370266361,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53204803428851,
           'lng': 13.384302370266361}],
         'distance': 34,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Julie-Wolfthorn-Str. 1 (Am Nordbahnhof)',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f5c62b9e4b02628c1f0995b-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '504c7b8ae4b0b0e067cb8f75',
        'name': 'Ground Coffee',
        'location': {'address': 'Chausseestr. 101',
         'crossStreet': 'Habersaathstr.',
         'lat': 52.53258419046969,
         'lng': 13.380454252378073,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53258419046969,
           'lng': 13.380454252378073}],
         'distance': 282,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestr. 101 (Habersaathstr.)',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-504c7b8ae4b0b0e067cb8f75-10'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f414467db32a3b47ca6'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Unter den Linden',
   'headerFullLocation': 'Unter den Linden, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 24,
   'suggestedBounds': {'ne': {'lat': 52.521500004500005,
     'lng': 13.394581118319113},
    'sw': {'lat': 52.5124999955, 'lng': 13.379818881680887}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4afa6086f964a520c91722e3',
        'name': 'Café Einstein',
        'location': {'address': 'Unter den Linden 42',
         'crossStreet': 'Neustädtische Kirchstr.',
         'lat': 52.51710878421212,
         'lng': 13.38582158088684,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51710878421212,
           'lng': 13.38582158088684}],
         'distance': 94,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 42 (Neustädtische Kirchstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4afa6086f964a520c91722e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50d72f14e4b0cc2e84b9e862',
        'name': 'Café Ursprung',
        'location': {'address': 'Friedrichstr. 90',
         'lat': 52.51828937830739,
         'lng': 13.389474019724089,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51828937830739,
           'lng': 13.389474019724089}],
         'distance': 210,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedrichstr. 90',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50d72f14e4b0cc2e84b9e862-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51c9d87e2fc6872f7cfe43b9',
        'name': 'The Digital Eatery',
        'location': {'address': 'Unter den Linden 17',
         'crossStreet': 'Charlottenstr.',
         'lat': 52.516881018727545,
         'lng': 13.39053134649409,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516881018727545,
           'lng': 13.39053134649409}],
         'distance': 226,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 17 (Charlottenstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51c9d87e2fc6872f7cfe43b9-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e4f8b40d4c0b6da5d7f1110',
        'name': 'Nespresso Boutique',
        'location': {'address': 'Friedrichstr. 171',
         'crossStreet': 'Französische Str.',
         'lat': 52.51475214367242,
         'lng': 13.389155790935018,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51475214367242,
           'lng': 13.389155790935018}],
         'distance': 283,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedrichstr. 171 (Französische Str.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e4f8b40d4c0b6da5d7f1110-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5eca85b8f2870e000801509b',
        'name': 'Bonanza Coffee',
        'location': {'address': 'Jägerstr. 58',
         'lat': 52.514034,
         'lng': 13.390665,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.514034,
           'lng': 13.390665}],
         'distance': 405,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jägerstr. 58', '10117 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5eca85b8f2870e000801509b-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b2237d3f964a5207a4424e3',
        'name': 'Zimt & Zucker',
        'location': {'address': 'Schiffbauerdamm 12',
         'lat': 52.520654,
         'lng': 13.384299,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520654,
           'lng': 13.384299}],
         'distance': 451,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schiffbauerdamm 12',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b2237d3f964a5207a4424e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ce3bf121594236a88d8f849',
        'name': 'ZDF Cafe',
        'location': {'address': 'Unter der Linden 36',
         'lat': 52.51732724502541,
         'lng': 13.38696115011947,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51732724502541,
           'lng': 13.38696115011947}],
         'distance': 39,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter der Linden 36',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ce3bf121594236a88d8f849-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adf77c3f964a520df7a21e3',
        'name': 'Starbucks',
        'location': {'address': 'FRIEDRICHSTRASSE 96, IHZ',
         'crossStreet': 'Georgenstr.',
         'lat': 52.519517366015116,
         'lng': 13.38880173077011,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519517366015116,
           'lng': 13.38880173077011}],
         'distance': 300,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['FRIEDRICHSTRASSE 96, IHZ (Georgenstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adf77c3f964a520df7a21e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '501d23c1e4b07ccc3841a6a3',
        'name': 'Miele Gallery Berlin',
        'location': {'address': 'Unter den Linden 26',
         'lat': 52.51741570045135,
         'lng': 13.388124120999858,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51741570045135,
           'lng': 13.388124120999858}],
         'distance': 77,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 26',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-501d23c1e4b07ccc3841a6a3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d2b35792f61e8002363c8a3',
        'name': 'Coffee Roasters Berlin',
        'location': {'lat': 52.517536,
         'lng': 13.387778,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517536,
           'lng': 13.387778}],
         'distance': 71,
         'cc': 'DE',
         'neighborhood': 'Unter den Linden',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d2b35792f61e8002363c8a3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5368dc27498e090c7a4b924d',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Friedrichstr. 71',
         'lat': 52.51355016052156,
         'lng': 13.389435179357283,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51355016052156,
           'lng': 13.389435179357283}],
         'distance': 412,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedrichstr. 71',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5368dc27498e090c7a4b924d-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50db0dc3e4b07ec199198104',
        'name': 'Berliner Kindl',
        'location': {'lat': 52.51707627818953,
         'lng': 13.390259020454312,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51707627818953,
           'lng': 13.390259020454312}],
         'distance': 207,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50db0dc3e4b07ec199198104-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c2f1ef17cc0c9b6a726eb9a',
        'name': 'Pure Origins',
        'location': {'address': 'Georgenstr. 193',
         'lat': 52.520172,
         'lng': 13.391058,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520172,
           'lng': 13.391058}],
         'distance': 439,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Georgenstr. 193',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c2f1ef17cc0c9b6a726eb9a-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cc554cd01fb236aead3b0ba',
        'name': 'Scoom',
        'location': {'address': 'Friedrichstr.',
         'crossStreet': 'U-Bahn-Aufgang Ecke Georgenstr.',
         'lat': 52.51977776058543,
         'lng': 13.387243113201814,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51977776058543,
           'lng': 13.387243113201814}],
         'distance': 309,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedrichstr. (U-Bahn-Aufgang Ecke Georgenstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cc554cd01fb236aead3b0ba-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b1d2d5ef964a520950c24e3',
        'name': 'Meyerbeer Coffee',
        'location': {'address': 'Universitätsstr. 2/3a',
         'crossStreet': 'Georgenstr.',
         'lat': 52.520015711206824,
         'lng': 13.392046413856676,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520015711206824,
           'lng': 13.392046413856676}],
         'distance': 469,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Universitätsstr. 2/3a (Georgenstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b1d2d5ef964a520950c24e3-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bffb70af61ea593069eea13',
        'name': 'Segafredo Zanetti Espresso',
        'location': {'address': 'Unter den Linden 38',
         'lat': 52.51704719858359,
         'lng': 13.386934981136799,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51704719858359,
           'lng': 13.386934981136799}],
         'distance': 18,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 38',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bffb70af61ea593069eea13-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58ac6febe386e3459cadb177',
        'name': 'BASECAMP Coffeebar',
        'location': {'address': 'Mittelstr. 51',
         'lat': 52.517921,
         'lng': 13.388088,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517921,
           'lng': 13.388088}],
         'distance': 118,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mittelstr. 51', '10117 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58ac6febe386e3459cadb177-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a5208d4521e3',
        'name': 'Café Lebensart',
        'location': {'address': 'Unter den Linden 69 a+b',
         'lat': 52.516444888842784,
         'lng': 13.382149652830892,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516444888842784,
           'lng': 13.382149652830892}],
         'distance': 347,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 69 a+b',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a5208d4521e3-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc6f97c14d795217f7d66e9',
        'name': 'Café Leon',
        'location': {'address': 'S-Bahnbogen 202',
         'crossStreet': 'Georgenstr.',
         'lat': 52.5199380090885,
         'lng': 13.38913886404926,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5199380090885,
           'lng': 13.38913886404926}],
         'distance': 352,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['S-Bahnbogen 202 (Georgenstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc6f97c14d795217f7d66e9-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55b7b26f498e48cec7faf026',
        'name': "Adam's frischer schmeckt",
        'location': {'address': 'Georgenstr. 12',
         'lat': 52.51996960838,
         'lng': 13.388890196579986,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51996960838,
           'lng': 13.388890196579986}],
         'distance': 349,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Georgenstr. 12',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55b7b26f498e48cec7faf026-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5cb8204479f6c7002c260eb9',
        'name': 'Wayne’s Coffee',
        'location': {'address': 'Georgenstraße 14 - 18',
         'lat': 52.520003,
         'lng': 13.388763,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520003,
           'lng': 13.388763}],
         'distance': 350,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Georgenstraße 14 - 18',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5cb8204479f6c7002c260eb9-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50dc80a8e4b0c1f301668c2d',
        'name': 'Cafe Quartier 206',
        'location': {'address': 'Friedrichstraße 71',
         'lat': 52.51356234585043,
         'lng': 13.390043789330294,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51356234585043,
           'lng': 13.390043789330294}],
         'distance': 428,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedrichstraße 71',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50dc80a8e4b0c1f301668c2d-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '508a818fe4b032d8bd844def',
        'name': 'Cafeteria HU Berlin',
        'location': {'address': 'Unter den Linden 6',
         'lat': 52.51917131876533,
         'lng': 13.392722255761806,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51917131876533,
           'lng': 13.392722255761806}],
         'distance': 445,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 6', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-508a818fe4b032d8bd844def-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '595a5dd2123a195de61065a3',
        'name': 'Adlon To Go',
        'location': {'address': 'Unter den Linden 77',
         'lat': 52.516394810896614,
         'lng': 13.380242805872006,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516394810896614,
           'lng': 13.380242805872006}],
         'distance': 476,
         'postalCode': '10117',
         'cc': 'DE',
         'neighborhood': 'Unter den Linden',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 77',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-595a5dd2123a195de61065a3-23'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f424769b85071abcffa'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 32,
   'suggestedBounds': {'ne': {'lat': 52.535000004500006,
     'lng': 13.412683387098978},
    'sw': {'lat': 52.5259999955, 'lng': 13.397916612901023}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adf59d3f964a520bc7921e3',
        'name': 'Cafe Galão',
        'location': {'address': 'Weinbergsweg 8',
         'lat': 52.53111966672184,
         'lng': 13.402515528856984,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53111966672184,
           'lng': 13.402515528856984}],
         'distance': 200,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 8',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adf59d3f964a520bc7921e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5601190d498e2e96b9d88288',
        'name': 'St. Oberholz Coffee Lab',
        'location': {'address': 'Zehdenicker Str. 1',
         'lat': 52.52969886646899,
         'lng': 13.407445528202917,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52969886646899,
           'lng': 13.407445528202917}],
         'distance': 170,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Zehdenicker Str. 1',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5601190d498e2e96b9d88288-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcfbdaf964a520296321e3',
        'name': 'Café Fleury',
        'location': {'address': 'Weinbergsweg 20',
         'lat': 52.5312038400892,
         'lng': 13.402489630320915,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5312038400892,
           'lng': 13.402489630320915}],
         'distance': 205,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 20',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcfbdaf964a520296321e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5960c9eb1de7653a4778566e',
        'name': 'Tinman Berlin',
        'location': {'address': 'Alte Schönhauser Str. 2',
         'lat': 52.52862456884767,
         'lng': 13.409288060009699,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52862456884767,
           'lng': 13.409288060009699}],
         'distance': 341,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alte Schönhauser Str. 2',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '538199847'}},
       'referralId': 'e-0-5960c9eb1de7653a4778566e-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '514c4427e4b0ccf66167d95a',
        'name': 'lekkamokka',
        'location': {'address': 'Rosenthaler Str. 62',
         'lat': 52.52759098626332,
         'lng': 13.403069272031187,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52759098626332,
           'lng': 13.403069272031187}],
         'distance': 357,
         'postalCode': '10119',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rosenthaler Str. 62',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-514c4427e4b0ccf66167d95a-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c0fde34ce57c928f7f580d2',
        'name': 'Green Tea Café MAMECHA',
        'location': {'address': 'Mulackstr. 33',
         'crossStreet': 'Rückerstr.',
         'lat': 52.52728395772743,
         'lng': 13.406304556201015,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52728395772743,
           'lng': 13.406304556201015}],
         'distance': 364,
         'postalCode': '10119',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mulackstr. 33 (Rückerstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c0fde34ce57c928f7f580d2-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59e1c96831ac6c348006621b',
        'name': 'Rapha Berlin',
        'location': {'address': 'Alte Schönhauser Str. 5',
         'lat': 52.52760524020057,
         'lng': 13.408639413642092,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52760524020057,
           'lng': 13.408639413642092}],
         'distance': 393,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alte Schönhauser Str. 5',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59e1c96831ac6c348006621b-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4afd913bf964a520a72822e3',
        'name': 'Café Lois',
        'location': {'address': 'Linienstr. 60',
         'lat': 52.52882978481763,
         'lng': 13.405344598934164,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52882978481763,
           'lng': 13.405344598934164}],
         'distance': 185,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Linienstr. 60', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4afd913bf964a520a72822e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5979ab6bb23dfa060294c9f2',
        'name': 'What do you fancy love?',
        'location': {'address': 'Linienstr. 41',
         'lat': 52.528240176294645,
         'lng': 13.409489161621611,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.528240176294645,
           'lng': 13.409489161621611}],
         'distance': 379,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Linienstr. 41', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5979ab6bb23dfa060294c9f2-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520be4621e3',
        'name': 'Gorki Park',
        'location': {'address': 'Weinbergsweg 25',
         'lat': 52.53044598224219,
         'lng': 13.40182675364703,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53044598224219,
           'lng': 13.40182675364703}],
         'distance': 235,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 25',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520be4621e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5433fc35498e6283802aac66',
        'name': 'P & T - Paper & Tea',
        'location': {'address': 'Alte SchönhauserAllee 50',
         'lat': 52.527096589746186,
         'lng': 13.408233533335437,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.527096589746186,
           'lng': 13.408233533335437}],
         'distance': 427,
         'postalCode': '10119',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alte SchönhauserAllee 50',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5433fc35498e6283802aac66-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50597a1ae4b09d2516205aa9',
        'name': 'The Barn - Roastery',
        'location': {'address': 'Schönhauser Allee 8',
         'lat': 52.530038070215326,
         'lng': 13.410568825887637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.530038070215326,
           'lng': 13.410568825887637}],
         'distance': 360,
         'postalCode': '10119',
         'cc': 'DE',
         'neighborhood': 'Rosa Luxemburg Platz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 8',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50597a1ae4b09d2516205aa9-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b12a57ef964a520d08b23e3',
        'name': 'Milchhalle',
        'location': {'address': 'Auguststr. 50',
         'lat': 52.527792,
         'lng': 13.400447,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.527792,
           'lng': 13.400447}],
         'distance': 445,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Auguststr. 50', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b12a57ef964a520d08b23e3-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcf782f964a520016321e3',
        'name': 'St. Oberholz',
        'location': {'address': 'Rosenthaler Str. 72',
         'crossStreet': 'Torstr.',
         'lat': 52.52955041013571,
         'lng': 13.401651193057493,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52955041013571,
           'lng': 13.401651193057493}],
         'distance': 268,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rosenthaler Str. 72 (Torstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcf782f964a520016321e3-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '585555194287c920bea85277',
        'name': 'Five Elephant',
        'location': {'address': 'Alte Schönhauser Str. 14-15',
         'lat': 52.52674661018768,
         'lng': 13.407724197237187,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52674661018768,
           'lng': 13.407724197237187}],
         'distance': 448,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alte Schönhauser Str. 14-15',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-585555194287c920bea85277-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6e58414d24b60ca360d8d8',
        'name': 'Katz & Maus',
        'location': {'address': 'Weinbergsweg 1a',
         'lat': 52.5301827357598,
         'lng': 13.4017075380609,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5301827357598,
           'lng': 13.4017075380609}],
         'distance': 245,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 1a',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6e58414d24b60ca360d8d8-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda7af964a520e34621e3',
        'name': 'Zur Rose',
        'location': {'address': 'Weinbergsweg 26',
         'crossStreet': 'Rosenthaler Platz',
         'lat': 52.53038709648173,
         'lng': 13.401821596821135,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53038709648173,
           'lng': 13.401821596821135}],
         'distance': 235,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 26 (Rosenthaler Platz)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '46940825'}},
       'referralId': 'e-0-4adcda7af964a520e34621e3-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '585285a52f91cb5693396da2',
        'name': 'Maudits Français !',
        'location': {'address': 'Fehrbelliner Straße 5',
         'lat': 52.5309704673615,
         'lng': 13.410050469900119,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5309704673615,
           'lng': 13.410050469900119}],
         'distance': 325,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fehrbelliner Straße 5',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-585285a52f91cb5693396da2-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b9234c2f964a5204aec33e3',
        'name': 'Bei Maria',
        'location': {'address': 'Veteranenstr. 11',
         'lat': 52.53331845737647,
         'lng': 13.401773680411525,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53331845737647,
           'lng': 13.401773680411525}],
         'distance': 394,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Veteranenstr. 11',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b9234c2f964a5204aec33e3-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c4d877f8194fc002c90f9fd',
        'name': 'Espressomania Coffee Roastery',
        'location': {'lat': 52.53453,
         'lng': 13.405566,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53453,
           'lng': 13.405566}],
         'distance': 448,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c4d877f8194fc002c90f9fd-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d864523f9f3a1cdb489dc64',
        'name': "Backshop '05",
        'location': {'address': 'Kastanienallee 47',
         'crossStreet': 'Zionskirchstr.',
         'lat': 52.534351781775634,
         'lng': 13.405476103196959,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.534351781775634,
           'lng': 13.405476103196959}],
         'distance': 428,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 47 (Zionskirchstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d864523f9f3a1cdb489dc64-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57726c7b498ee034ef0c8f46',
        'name': 'Der Milchladen',
        'location': {'address': 'Choriner Straße',
         'lat': 52.531035,
         'lng': 13.405848,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.531035,
           'lng': 13.405848}],
         'distance': 70,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Choriner Straße', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57726c7b498ee034ef0c8f46-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5deb8ac4f8f55f0008d5a8f3',
        'name': 'Huadou Soy Concept Store',
        'location': {'address': 'Liniestrasse 204',
         'lat': 52.528935,
         'lng': 13.402514,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.528935,
           'lng': 13.402514}],
         'distance': 256,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Liniestrasse 204', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5deb8ac4f8f55f0008d5a8f3-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e5a50f995d0410008ed393b',
        'name': 'The Barn',
        'location': {'address': 'Weinbergsweg 1',
         'crossStreet': 'Rosenthaler Platz',
         'lat': 52.529914,
         'lng': 13.401464,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.529914,
           'lng': 13.401464}],
         'distance': 267,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinbergsweg 1 (Rosenthaler Platz)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e5a50f995d0410008ed393b-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '589b2f6ca8b7594267215f07',
        'name': 'Bread & Coffee',
        'location': {'address': 'Schönhauser Allee 188',
         'crossStreet': 'Torstr.',
         'lat': 52.529006,
         'lng': 13.40938,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.529006,
           'lng': 13.40938}],
         'distance': 322,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 188 (Torstr.)',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-589b2f6ca8b7594267215f07-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e2d4c3849dccb0008da6d5a',
        'name': 'Smash’d Eatery',
        'location': {'address': 'Fehrbelliner Str 5',
         'lat': 52.531022,
         'lng': 13.410164,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.531022,
           'lng': 13.410164}],
         'distance': 334,
         'cc': 'DE',
         'neighborhood': 'Prenzlauer Berg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fehrbelliner Str 5', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e2d4c3849dccb0008da6d5a-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ccd5f3f0802d4002c3d1d47',
        'name': 'Mod Coffee',
        'location': {'address': 'Brunnenstraße 193, 10119 Berlin, Germany',
         'lat': 52.530646,
         'lng': 13.400207,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.530646,
           'lng': 13.400207}],
         'distance': 345,
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brunnenstraße 193, 10119 Berlin, Germany',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ccd5f3f0802d4002c3d1d47-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57162c7b498e2f1993e22ad2',
        'name': 'Kaffee Schwarz',
        'location': {'address': 'Torstraße 130',
         'lat': 52.52937,
         'lng': 13.399774,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52937,
           'lng': 13.399774}],
         'distance': 394,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torstraße 130', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57162c7b498e2f1993e22ad2-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c064a4d91d776b08e93f8f9',
        'name': 'Camara',
        'location': {'address': 'Schönhauser Allee 10',
         'lat': 52.530821293805566,
         'lng': 13.411611399424899,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.530821293805566,
           'lng': 13.411611399424899}],
         'distance': 428,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 10',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c064a4d91d776b08e93f8f9-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '541dcfb7498e3d028ff76a15',
        'name': 'Krause',
        'location': {'lat': 52.53130881448604,
         'lng': 13.412009208394814,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53130881448604,
           'lng': 13.412009208394814}],
         'distance': 463,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-541dcfb7498e3d028ff76a15-29'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6fb7bbf964a520cbfa2ce3',
        'name': 'Coffee to go',
        'location': {'address': 'Kastanienallee 45',
         'lat': 52.53450100804446,
         'lng': 13.4056020986434,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53450100804446,
           'lng': 13.4056020986434}],
         'distance': 445,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 45',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6fb7bbf964a520cbfa2ce3-30'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b599bc4f964a520b28e28e3',
        'name': 'Metropolitan Coffee',
        'location': {'address': 'Torstr. 41',
         'lat': 52.52852205999264,
         'lng': 13.411168826051094,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52852205999264,
           'lng': 13.411168826051094}],
         'distance': 454,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torstr. 41', '10119 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '38306238'}},
       'referralId': 'e-0-4b599bc4f964a520b28e28e3-31'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f42dfad1e14df23bfaf'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 35,
   'suggestedBounds': {'ne': {'lat': 52.5258000045, 'lng': 13.416981840771696},
    'sw': {'lat': 52.516799995499994, 'lng': 13.402218159228303}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b55e0a9acb00b0039fb45e3',
        'name': '19grams',
        'location': {'address': 'Karl-Liebknecht-Str. 13',
         'crossStreet': 'Rochstr.',
         'lat': 52.52269704703948,
         'lng': 13.407440185546875,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52269704703948,
           'lng': 13.407440185546875}],
         'distance': 213,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 13 (Rochstr.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b55e0a9acb00b0039fb45e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c94c9b72db4a9002c27ee75',
        'name': 'Coffee Fellows',
        'location': {'address': 'Neue Grünstraße 41',
         'lat': 52.520379,
         'lng': 13.411025,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520379,
           'lng': 13.411025}],
         'distance': 140,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Neue Grünstraße 41',
          '10179 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c94c9b72db4a9002c27ee75-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5645d48d498ebb7b50aab8d8',
        'name': "Gregory's",
        'location': {'address': 'Gontardstr. 10',
         'crossStreet': 'Rathausstr.',
         'lat': 52.520990912477245,
         'lng': 13.411162113034559,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520990912477245,
           'lng': 13.411162113034559}],
         'distance': 111,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gontardstr. 10 (Rathausstr.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5645d48d498ebb7b50aab8d8-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54bd1e28498eec46cfc17c24',
        'name': 'Father Carpenter',
        'location': {'address': 'Münzstr. 21',
         'crossStreet': '1. Hof',
         'lat': 52.52446934407154,
         'lng': 13.406614065170288,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52446934407154,
           'lng': 13.406614065170288}],
         'distance': 406,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Münzstr. 21 (1. Hof)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54bd1e28498eec46cfc17c24-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af80b9df964a520cb0a22e3',
        'name': 'Buscaglione',
        'location': {'address': 'Rochstr. 3',
         'lat': 52.52399380498759,
         'lng': 13.407616209150518,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52399380498759,
           'lng': 13.407616209150518}],
         'distance': 328,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rochstr. 3', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af80b9df964a520cb0a22e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '564e1c27498e74169dafc2c3',
        'name': 'Nespresso Boutique',
        'location': {'address': 'Alexanderplatz 9',
         'lat': 52.522066063709694,
         'lng': 13.411840159876173,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.522066063709694,
           'lng': 13.411840159876173}],
         'distance': 174,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alexanderplatz 9',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-564e1c27498e74169dafc2c3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f96fb2b6d86c297eee02f51',
        'name': 'Bonne Vie Café',
        'location': {'address': 'Propststrasse 1',
         'lat': 52.51728735859492,
         'lng': 13.407735366427183,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51728735859492,
           'lng': 13.407735366427183}],
         'distance': 464,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Propststrasse 1',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f96fb2b6d86c297eee02f51-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51a0a496498e210b5f81f44b',
        'name': 'Café-Haus Koch Berlin',
        'location': {'address': 'Karl-Liebknecht-Str. 7',
         'lat': 52.52082609237831,
         'lng': 13.405733577027748,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52082609237831,
           'lng': 13.405733577027748}],
         'distance': 267,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 7',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51a0a496498e210b5f81f44b-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda7af964a520e74621e3',
        'name': 'Kaffeemitte',
        'location': {'address': 'Weinmeisterstr. 9a',
         'lat': 52.52506980005145,
         'lng': 13.405999982119633,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52506980005145,
           'lng': 13.405999982119633}],
         'distance': 485,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weinmeisterstr. 9a',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda7af964a520e74621e3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5749ca13498e49a136bbb607',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Alexanderstr. 13',
         'lat': 52.52113667426643,
         'lng': 13.414633344363445,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52113667426643,
           'lng': 13.414633344363445}],
         'distance': 341,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Alexanderplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alexanderstr. 13',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5749ca13498e49a136bbb607-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c73ad9d0e23b1f765ea20dc',
        'name': "Bell 'Chicco",
        'location': {'lat': 52.524802,
         'lng': 13.410173,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.524802,
           'lng': 13.410173}],
         'distance': 391,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c73ad9d0e23b1f765ea20dc-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4babb6d5f964a52002c33ae3',
        'name': 'Starbucks',
        'location': {'address': 'Panoramastr. 1A',
         'lat': 52.52080771709556,
         'lng': 13.410544131364468,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52080771709556,
           'lng': 13.410544131364468}],
         'distance': 84,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Panoramastr. 1A',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4babb6d5f964a52002c33ae3-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dce72f3d164679b8cff0f06',
        'name': 'BoBoQ Mitte',
        'location': {'address': 'Alexanderplatz 9',
         'lat': 52.52202234897672,
         'lng': 13.411423746827825,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52202234897672,
           'lng': 13.411423746827825}],
         'distance': 147,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alexanderplatz 9',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dce72f3d164679b8cff0f06-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '514453f5e4b071f0e0e0a123',
        'name': 'Coffee Fellows',
        'location': {'address': 'Rosa-Luxemburg-Str. 2',
         'lat': 52.52265601136413,
         'lng': 13.409790005427109,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52265601136413,
           'lng': 13.409790005427109}],
         'distance': 151,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rosa-Luxemburg-Str. 2',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-514453f5e4b071f0e0e0a123-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51dc07c4498e5fd2afaca43a',
        'name': 'Starbucks',
        'location': {'address': 'Dircksenstr. 2',
         'lat': 52.521283535170994,
         'lng': 13.411746463330244,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.521283535170994,
           'lng': 13.411746463330244}],
         'distance': 145,
         'postalCode': '10179',
         'cc': 'DE',
         'neighborhood': 'Alexanderplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dircksenstr. 2',
          '10179 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51dc07c4498e5fd2afaca43a-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c0a31e932daef3bdd974b50',
        'name': 'Starbucks',
        'location': {'address': 'Grunerstr. 20',
         'lat': 52.51973163510366,
         'lng': 13.414859175682068,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51973163510366,
           'lng': 13.414859175682068}],
         'distance': 396,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunerstr. 20', '10179 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c0a31e932daef3bdd974b50-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5415a2bb498ec356dccd2a38',
        'name': 'Berlin Coffee',
        'location': {'lat': 52.52107009897175,
         'lng': 13.411037279624427,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52107009897175,
           'lng': 13.411037279624427}],
         'distance': 100,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5415a2bb498ec356dccd2a38-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cab19d544a8224ba5a82a40',
        'name': "Café im Podewil'schen Palais",
        'location': {'address': 'Klosterstr. 68',
         'lat': 52.517496,
         'lng': 13.412633,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517496,
           'lng': 13.412633}],
         'distance': 470,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Klosterstr. 68',
          '10179 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cab19d544a8224ba5a82a40-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0e18d0f964a520f05423e3',
        'name': 'Balzac Coffee',
        'location': {'address': 'Karl-Liebknecht-Str. 5',
         'crossStreet': 'Spandauer Str.',
         'lat': 52.519681063790664,
         'lng': 13.403686798037004,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519681063790664,
           'lng': 13.403686798037004}],
         'distance': 439,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 5 (Spandauer Str.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0e18d0f964a520f05423e3-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda91f964a520774b21e3',
        'name': 'Tchibo',
        'location': {'address': 'Alexanderplatz 2',
         'lat': 52.52135367861856,
         'lng': 13.413632084416959,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52135367861856,
           'lng': 13.413632084416959}],
         'distance': 273,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alexanderplatz 2',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda91f964a520774b21e3-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c0e57c2c700c9b62aaea3dd',
        'name': 'Eiscafé Lampe',
        'location': {'address': 'Rathausstr. 5',
         'lat': 52.519730644715125,
         'lng': 13.410142853380721,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519730644715125,
           'lng': 13.410142853380721}],
         'distance': 178,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rathausstr. 5', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c0e57c2c700c9b62aaea3dd-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50e07db0e4b053b5f71cd507',
        'name': 'Café P1',
        'location': {'address': 'Panoramastr. 1',
         'lat': 52.52123591975461,
         'lng': 13.410102567500537,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52123591975461,
           'lng': 13.410102567500537}],
         'distance': 34,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Panoramastr. 1',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50e07db0e4b053b5f71cd507-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '510d05ece4b033507fd69bcb',
        'name': 'Zappas Coffee',
        'location': {'address': 'Panoramastr. 2',
         'crossStreet': 'unter dem Fernsehturn',
         'lat': 52.52151767106789,
         'lng': 13.410425758219379,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52151767106789,
           'lng': 13.410425758219379}],
         'distance': 60,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Panoramastr. 2 (unter dem Fernsehturn)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-510d05ece4b033507fd69bcb-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4babb729f964a5201ec33ae3',
        'name': 'Blixen in den RathausPassagen',
        'location': {'address': 'Rathausstr. 7-10',
         'lat': 52.51914084993105,
         'lng': 13.41045509819763,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51914084993105,
           'lng': 13.41045509819763}],
         'distance': 247,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rathausstr. 7-10',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4babb729f964a5201ec33ae3-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f368ce7e4b039c3c17bf993',
        'name': 'Coffee Shop Inn',
        'location': {'address': 'Alexanderplatz 7',
         'crossStreet': 'Karl-Liebknecht-Str.',
         'lat': 52.52338491572048,
         'lng': 13.41191594264661,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52338491572048,
           'lng': 13.41191594264661}],
         'distance': 280,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alexanderplatz 7 (Karl-Liebknecht-Str.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f368ce7e4b039c3c17bf993-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cd6d8f4a5b34688c0ea9550',
        'name': 'Tchibo',
        'location': {'address': 'Grunerstr. 20',
         'lat': 52.52125590491851,
         'lng': 13.41395484265471,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52125590491851,
           'lng': 13.41395484265471}],
         'distance': 295,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunerstr. 20', '10179 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cd6d8f4a5b34688c0ea9550-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e56a4313ae47d000890634b',
        'name': 'Wine & Coffee House',
        'location': {'address': 'Karl-Liebknecht-Str. 7',
         'lat': 52.52068870000001,
         'lng': 13.4052341,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52068870000001,
           'lng': 13.4052341}],
         'distance': 303,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 7',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '578088580'}},
       'referralId': 'e-0-5e56a4313ae47d000890634b-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56e4122fcd102122aca273e2',
        'name': 'Espressobar im Mediamarkt',
        'location': {'address': 'Grunerstr. 20',
         'lat': 52.519879,
         'lng': 13.414777,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519879,
           'lng': 13.414777}],
         'distance': 384,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunerstr. 20', '10179 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56e4122fcd102122aca273e2-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b310db98194fc002c27e884',
        'name': 'Kusmi Tea',
        'location': {'address': 'Grunerstr. 20',
         'lat': 52.5199004,
         'lng': 13.4147949,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5199004,
           'lng': 13.4147949}],
         'distance': 384,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunerstr. 20', '10179 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b310db98194fc002c27e884-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bcaf2f50687ef3be0cedccc',
        'name': 'ALEX',
        'location': {'address': 'Panoramastr. 1a',
         'crossStreet': 'Alexanderplatz',
         'lat': 52.52126185968828,
         'lng': 13.408016249230865,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52126185968828,
           'lng': 13.408016249230865}],
         'distance': 107,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Panoramastr. 1a (Alexanderplatz)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '449783231'}},
       'referralId': 'e-0-4bcaf2f50687ef3be0cedccc-29'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '580646a238fac29b329d6d66',
        'name': 'M & M Back',
        'location': {'address': 'Gontardstr. 9',
         'lat': 52.52081043498214,
         'lng': 13.410036563873291,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52081043498214,
           'lng': 13.410036563873291}],
         'distance': 62,
         'postalCode': '10178',
         'cc': 'DE',
         'neighborhood': 'Mitte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gontardstr. 9', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-580646a238fac29b329d6d66-30'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4da041cb31a6b60cbcd06e18',
        'name': 'Pure Origins',
        'location': {'address': 'Litfaßplatz 2',
         'lat': 52.52167961364953,
         'lng': 13.403422614854552,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52167961364953,
           'lng': 13.403422614854552}],
         'distance': 420,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Litfaßplatz 2', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4da041cb31a6b60cbcd06e18-31'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d46ed7a0349224b54ef124f',
        'name': "Bubble's Tea Bar",
        'location': {'address': 'Henriette-Herz-Platz 4',
         'lat': 52.522293363243364,
         'lng': 13.403218387045413,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.522293363243364,
           'lng': 13.403218387045413}],
         'distance': 446,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Henriette-Herz-Platz 4',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d46ed7a0349224b54ef124f-32'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c516dbf9426c928a0cebb73',
        'name': 'Lavazza',
        'location': {'address': 'Grunerstr. 20',
         'lat': 52.519721,
         'lng': 13.415924,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519721,
           'lng': 13.415924}],
         'distance': 463,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunerstr. 20', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c516dbf9426c928a0cebb73-33'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b11338ff964a520d57823e3',
        'name': 'AMT Coffee',
        'location': {'address': 'Hackescher Markt',
         'crossStreet': 'S-Bahnbögen',
         'lat': 52.523158362500006,
         'lng': 13.403127,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.523158362500006,
           'lng': 13.403127}],
         'distance': 484,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hackescher Markt (S-Bahnbögen)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b11338ff964a520d57823e3-34'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f430cc1d6096fcdb6d5'},
  'response': {'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 6,
   'suggestedBounds': {'ne': {'lat': 52.5167000045, 'lng': 13.423780312076525},
    'sw': {'lat': 52.5076999955, 'lng': 13.409019687923474}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fba4195e4b0d55659e2ca2c',
        'name': 'Chez Gustave',
        'location': {'address': 'Inselstr. 13',
         'lat': 52.51162337007914,
         'lng': 13.41347032825218,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51162337007914,
           'lng': 13.41347032825218}],
         'distance': 208,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Inselstr. 13', '10179 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '36237898'}},
       'referralId': 'e-0-4fba4195e4b0d55659e2ca2c-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f7b4265e4b0bd4c7c71910a',
        'name': 'Café Ré',
        'location': {'address': 'Märkisches Ufer 22',
         'crossStreet': 'Inselstr.',
         'lat': 52.513218764083966,
         'lng': 13.410895186525362,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513218764083966,
           'lng': 13.410895186525362}],
         'distance': 389,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Märkisches Ufer 22 (Inselstr.)',
          '10179 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f7b4265e4b0bd4c7c71910a-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc5a3edccbcef3b47b9e6d2',
        'name': 'Coffee I',
        'location': {'address': 'Brückenstr. 5-6a',
         'lat': 52.513210171635876,
         'lng': 13.417482198952083,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513210171635876,
           'lng': 13.417482198952083}],
         'distance': 134,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brückenstr. 5-6a',
          '10179 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc5a3edccbcef3b47b9e6d2-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '561e0857498effa56509098a',
        'name': 'Chicco di Caffè',
        'location': {'address': 'Rungestr. 22-24',
         'lat': 52.51358939708947,
         'lng': 13.419177493425577,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51358939708947,
           'lng': 13.419177493425577}],
         'distance': 243,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rungestr. 22-24',
          '10179 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-561e0857498effa56509098a-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d496674e4b7f20008956e18',
        'name': 'Coffee Lab',
        'location': {'address': 'Wallstr. 38',
         'lat': 52.512539,
         'lng': 13.411347,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.512539,
           'lng': 13.411347}],
         'distance': 344,
         'postalCode': '10179',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wallstr. 38', '10179 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d496674e4b7f20008956e18-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f58c370e4b00c68f83ca454',
        'name': 'Cafe ZER',
        'location': {'lat': 52.51262850864021,
         'lng': 13.410977098462665,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51262850864021,
           'lng': 13.410977098462665}],
         'distance': 370,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f58c370e4b00c68f83ca454-5'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f43d91d7d1d49464ba1'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Andreasstraße',
   'headerFullLocation': 'Andreasstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.516800004500006,
     'lng': 13.44678032887092},
    'sw': {'lat': 52.5077999955, 'lng': 13.432019671129078}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52dfb70111d2db312f0a1f09',
        'name': 'Starbucks',
        'location': {'address': 'Am Ostbahnhof',
         'crossStreet': 'Koppenstr.',
         'lat': 52.50962772842477,
         'lng': 13.434379650486456,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50962772842477,
           'lng': 13.434379650486456}],
         'distance': 451,
         'postalCode': '10243',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Ostbahnhof (Koppenstr.)',
          '10243 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52dfb70111d2db312f0a1f09-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ee79f6b0e61a5b51494e28f',
        'name': 'Schokoback',
        'location': {'address': 'Koppenstr. 75',
         'crossStreet': 'Singerstr.',
         'lat': 52.5140495408683,
         'lng': 13.435584018015579,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5140495408683,
           'lng': 13.435584018015579}],
         'distance': 323,
         'postalCode': '10243',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Koppenstr. 75 (Singerstr.)',
          '10243 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ee79f6b0e61a5b51494e28f-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c60e06f90b2c9b675fb3d22',
        'name': 'Café Berlin',
        'location': {'address': 'Am Ostbahnhof',
         'crossStreet': 'Erich-Steinfurth-Str.',
         'lat': 52.51014857523216,
         'lng': 13.433725833892822,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51014857523216,
           'lng': 13.433725833892822}],
         'distance': 452,
         'postalCode': '10243',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Ostbahnhof (Erich-Steinfurth-Str.)',
          '10243 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c60e06f90b2c9b675fb3d22-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4471cf843322f3627d'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Stralauer Allee',
   'headerFullLocation': 'Stralauer Allee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.505200004500004,
     'lng': 13.472078381380577},
    'sw': {'lat': 52.4961999955, 'lng': 13.457321618619424}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52c19656498ea7ea807346e6',
        'name': 'Milja & Schäfa',
        'location': {'address': 'Sonntagstr. 1',
         'lat': 52.50435936450862,
         'lng': 13.468234950298136,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50435936450862,
           'lng': 13.468234950298136}],
         'distance': 472,
         'postalCode': '10245',
         'cc': 'DE',
         'neighborhood': 'Boxhagener Kiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sonntagstr. 1', '10245 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52c19656498ea7ea807346e6-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f7ae0a0e4b0747c65b578d4',
        'name': 'LasCafe',
        'location': {'address': 'Laskerstr. 6-8',
         'lat': 52.50101897538426,
         'lng': 13.465526103973389,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50101897538426,
           'lng': 13.465526103973389}],
         'distance': 66,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Laskerstr. 6-8', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f7ae0a0e4b0747c65b578d4-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4432abda5e08fe53fa'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Samariterkiez',
   'headerFullLocation': 'Samariterkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 16,
   'suggestedBounds': {'ne': {'lat': 52.520600004500004,
     'lng': 13.472980967131265},
    'sw': {'lat': 52.5115999955, 'lng': 13.458219032868735}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5734663a498e1e63082f3e4b',
        'name': 'Die Kaffee Freunde (Die Kaffeefreunde)',
        'location': {'address': 'Bänschstr. 73',
         'lat': 52.51770415249472,
         'lng': 13.468495898671334,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51770415249472,
           'lng': 13.468495898671334}],
         'distance': 265,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bänschstr. 73', '10247 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5734663a498e1e63082f3e4b-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57039823cd101d4ac84dcfb7',
        'name': 'KleinMein',
        'location': {'address': 'Waldeyerstr. 9',
         'lat': 52.514847,
         'lng': 13.471392,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.514847,
           'lng': 13.471392}],
         'distance': 416,
         'postalCode': '10247',
         'cc': 'DE',
         'neighborhood': 'Samariterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Waldeyerstr. 9',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57039823cd101d4ac84dcfb7-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cd6af897da9a35d8ac6f0b9',
        'name': 'Coffein Centrale',
        'location': {'address': 'Mainzer Str. 20',
         'lat': 52.51337276255017,
         'lng': 13.462436464317955,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51337276255017,
           'lng': 13.462436464317955}],
         'distance': 371,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mainzer Str. 20',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cd6af897da9a35d8ac6f0b9-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cac427b2f08236a0b2a8a61',
        'name': 'Teehandlung Bohea',
        'location': {'address': 'Niederbarnimstr. 3',
         'lat': 52.51449265043573,
         'lng': 13.459533590582103,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51449265043573,
           'lng': 13.459533590582103}],
         'distance': 448,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Niederbarnimstr. 3',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cac427b2f08236a0b2a8a61-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4afaaa6df964a520461822e3',
        'name': 'Kaffee Karamell',
        'location': {'address': 'Voigtstr. 35',
         'lat': 52.51650469814483,
         'lng': 13.468428792821966,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51650469814483,
           'lng': 13.468428792821966}],
         'distance': 196,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Voigtstr. 35', '10247 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4afaaa6df964a520461822e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58e371b14886990b5ca3f1b8',
        'name': 'CaMelina Café & Bäckerei',
        'location': {'address': 'Waldeyerstraße 12',
         'lat': 52.514555483948676,
         'lng': 13.471044256448748,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.514555483948676,
           'lng': 13.471044256448748}],
         'distance': 406,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Waldeyerstraße 12',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58e371b14886990b5ca3f1b8-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a717c6fc9f90746aac5ffad',
        'name': 'BANKERT',
        'location': {'address': 'Proskauer Straße 5',
         'lat': 52.516003,
         'lng': 13.460891,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516003,
           'lng': 13.460891}],
         'distance': 319,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Proskauer Straße 5',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a717c6fc9f90746aac5ffad-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '526251d1498e25eda96e0306',
        'name': 'Cafe Herman Schulz',
        'location': {'address': 'Finowstr.',
         'crossStreet': 'Scharnweberstr.',
         'lat': 52.5125792091848,
         'lng': 13.468753546769653,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5125792091848,
           'lng': 13.468753546769653}],
         'distance': 446,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Finowstr. (Scharnweberstr.)',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-526251d1498e25eda96e0306-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50d44638e4b0af3684ebd1d2',
        'name': 'Teekränzchen',
        'location': {'address': 'Frankfurter Allee 36B',
         'lat': 52.51475390662486,
         'lng': 13.462807425363023,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51475390662486,
           'lng': 13.462807425363023}],
         'distance': 241,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Frankfurter Allee 36B',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50d44638e4b0af3684ebd1d2-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b091fdff964a520501423e3',
        'name': 'Anastasia',
        'location': {'address': 'Samariterstr. 13',
         'crossStreet': 'Schreinerstr.',
         'lat': 52.51731383301783,
         'lng': 13.4656734454401,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51731383301783,
           'lng': 13.4656734454401}],
         'distance': 135,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Samariterstr. 13 (Schreinerstr.)',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b091fdff964a520501423e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5543a8a3498edbeac57fa717',
        'name': 'vollsüß',
        'location': {'address': 'Pettenkoferstr. 4c',
         'lat': 52.51617683775689,
         'lng': 13.47246562633043,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51617683775689,
           'lng': 13.47246562633043}],
         'distance': 465,
         'postalCode': '10247',
         'cc': 'DE',
         'neighborhood': 'Samar',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pettenkoferstr. 4c',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5543a8a3498edbeac57fa717-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4efaec8af9ab2e66850ee98b',
        'name': 'Milch & Brötchen',
        'location': {'address': 'Rigaer Str. 29',
         'lat': 52.51657995149962,
         'lng': 13.46326231956482,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51657995149962,
           'lng': 13.46326231956482}],
         'distance': 167,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rigaer Str. 29',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4efaec8af9ab2e66850ee98b-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59baf48c4382ab3f4d82f858',
        'name': "My Sister's Coffee",
        'location': {'address': 'Frankfurter Allee 70',
         'lat': 52.51425377363946,
         'lng': 13.46717977521621,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51425377363946,
           'lng': 13.46717977521621}],
         'distance': 231,
         'postalCode': '10247',
         'cc': 'DE',
         'neighborhood': 'Südkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Frankfurter Allee 70',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59baf48c4382ab3f4d82f858-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59634711112c6c709381ef30',
        'name': 'Volle Kanne',
        'location': {'address': 'Proskauer Str 10',
         'crossStreet': 'Rigaerstr',
         'lat': 52.517158,
         'lng': 13.461775,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517158,
           'lng': 13.461775}],
         'distance': 284,
         'postalCode': '10247',
         'cc': 'DE',
         'neighborhood': 'Samariterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Proskauer Str 10 (Rigaerstr)',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59634711112c6c709381ef30-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e2e9c790ae6750008744e42',
        'name': 'Lani Coffee',
        'location': {'address': 'FRANKFURTER ALLEE 31',
         'lat': 52.515237,
         'lng': 13.460773,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.515237,
           'lng': 13.460773}],
         'distance': 340,
         'postalCode': '10247',
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['FRANKFURTER ALLEE 31', '10247', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e2e9c790ae6750008744e42-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5123a35de4b0542424f2d3fe',
        'name': 'Rosenwasser Café & Waschsalon',
        'location': {'address': 'Samariterstr. 12',
         'lat': 52.517299056444294,
         'lng': 13.465678322142708,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517299056444294,
           'lng': 13.465678322142708}],
         'distance': 133,
         'postalCode': '10247',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Samariterstr. 12',
          '10247 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5123a35de4b0542424f2d3fe-15'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f45f20935015a79b3e5'},
  'response': {'headerLocation': 'Friedenstraße',
   'headerFullLocation': 'Friedenstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.528300004500004,
     'lng': 13.4501822608864},
    'sw': {'lat': 52.5192999955, 'lng': 13.4354177391136}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e99958b82310013a121b614',
        'name': 'Frau Honig',
        'location': {'address': 'Straßmannstr. 1',
         'lat': 52.521433,
         'lng': 13.446983,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.521433,
           'lng': 13.446983}],
         'distance': 386,
         'postalCode': '10249',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Straßmannstr. 1',
          '10249 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e99958b82310013a121b614-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56795b44498ee8f80014876e',
        'name': 'Back-Café Harmonie',
        'location': {'lat': 52.522972,
         'lng': 13.4406,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.522972,
           'lng': 13.4406}],
         'distance': 175,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56795b44498ee8f80014876e-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e579fade4cd6acbd75ddec5',
        'name': 'Wilhelmina',
        'location': {'address': 'Wilhelm-Stolze-Str. 38',
         'lat': 52.52445421004182,
         'lng': 13.445946846186892,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52445421004182,
           'lng': 13.445946846186892}],
         'distance': 225,
         'postalCode': '10249',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilhelm-Stolze-Str. 38',
          '10249 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e579fade4cd6acbd75ddec5-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b8fca3af964a5206a6233e3',
        'name': 'Paul und Paula',
        'location': {'address': 'Richard-Sorge-Str. 25',
         'lat': 52.520473458038225,
         'lng': 13.447329647158703,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520473458038225,
           'lng': 13.447329647158703}],
         'distance': 480,
         'postalCode': '10249',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richard-Sorge-Str. 25',
          '10249 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b8fca3af964a5206a6233e3-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f454450ba020e257391'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Friedrichsfelde',
   'headerFullLocation': 'Alt-Friedrichsfelde, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5177000045, 'lng': 13.522180480024934},
    'sw': {'lat': 52.508699995499995, 'lng': 13.507419519975064}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f45556f332995d4c004'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Rummelsburg',
   'headerFullLocation': 'Rummelsburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.502400004500004,
     'lng': 13.498177911495977},
    'sw': {'lat': 52.4933999955, 'lng': 13.483422088504023}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e8dd1329a524ea86d4d858e',
        'name': 'Café Na Baía',
        'location': {'lat': 52.496779320139865,
         'lng': 13.492515560420003,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496779320139865,
           'lng': 13.492515560420003}],
         'distance': 170,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e8dd1329a524ea86d4d858e-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e528c35ede65a0008c10189',
        'name': 'Coffea',
        'location': {'address': 'Lückstraße 56',
         'lat': 52.501354,
         'lng': 13.491205,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501354,
           'lng': 13.491205}],
         'distance': 385,
         'postalCode': '10317',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lückstraße 56', '10317 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e528c35ede65a0008c10189-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f45d91d7d1d49465510'},
  'response': {'headerLocation': 'Karlshorst',
   'headerFullLocation': 'Karlshorst, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.4880000045, 'lng': 13.536075496169827},
    'sw': {'lat': 52.4789999955, 'lng': 13.521324503830174}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bf7de8d5317a593e0acfe7e',
        'name': 'Cafe TreBo',
        'location': {'address': 'Treskowallee 75',
         'lat': 52.485808,
         'lng': 13.526785,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.485808,
           'lng': 13.526785}],
         'distance': 287,
         'postalCode': '10318',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Treskowallee 75',
          '10318 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bf7de8d5317a593e0acfe7e-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e15eda04828e50008084163',
        'name': 'B‘Steck Café',
        'location': {'address': 'Dönhoffstraße 6',
         'lat': 52.483224,
         'lng': 13.523096,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.483224,
           'lng': 13.523096}],
         'distance': 381,
         'postalCode': '10318',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dönhoffstraße 6',
          '10318 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e15eda04828e50008084163-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bfd1badb6eedb002c16855a',
        'name': 'CO.ME.IN',
        'location': {'address': 'Treskowallee 115',
         'lat': 52.480651,
         'lng': 13.525474,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.480651,
           'lng': 13.525474}],
         'distance': 385,
         'postalCode': '10318',
         'cc': 'DE',
         'neighborhood': 'Karlshorst',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Treskowallee 115',
          '10318 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5bfd1badb6eedb002c16855a-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a64a51d67e5f251ed167531',
        'name': 'Kawi Café & Lunch',
        'location': {'address': 'Wandlitzstr. 1-3',
         'lat': 52.480404,
         'lng': 13.524434,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.480404,
           'lng': 13.524434}],
         'distance': 449,
         'postalCode': '10318',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wandlitzstr. 1-3',
          '10318 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a64a51d67e5f251ed167531-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f46726940047d4fbe52'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Friedrichsfelde',
   'headerFullLocation': 'Alt-Friedrichsfelde, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.503700004500004,
     'lng': 13.52617812964705},
    'sw': {'lat': 52.4946999955, 'lng': 13.511421870352951}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '585a6b8d13af1c5a1ec9598d',
        'name': 'Berliner Eisvogel',
        'location': {'lat': 52.497524,
         'lng': 13.521083,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497524,
           'lng': 13.521083}],
         'distance': 242,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-585a6b8d13af1c5a1ec9598d-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5348f4a8498e7cadf0636b0d',
        'name': '365 Coffee & Snacks',
        'location': {'address': 'Am Tierpark 74',
         'crossStreet': 'U5 Tierpark, Straßenbahntunnel',
         'lat': 52.497687962600985,
         'lng': 13.523032665252686,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497687962600985,
           'lng': 13.523032665252686}],
         'distance': 332,
         'postalCode': '10315',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Tierpark 74 (U5 Tierpark, Straßenbahntunnel)',
          '10315 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5348f4a8498e7cadf0636b0d-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '517502dbe4b019428fc44235',
        'name': 'Café Crusty',
        'location': {'address': 'Am Tierpark 74',
         'lat': 52.496943808481035,
         'lng': 13.522982423513913,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496943808481035,
           'lng': 13.522982423513913}],
         'distance': 378,
         'postalCode': '10315',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Tierpark 74',
          '10315 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-517502dbe4b019428fc44235-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f46c656a10ca6aaab98'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Herzbergstraße',
   'headerFullLocation': 'Herzbergstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.525100004500004,
     'lng': 13.504281723150665},
    'sw': {'lat': 52.5160999955, 'lng': 13.489518276849335}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f464467db32a3b491ed'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Fennpfuhl',
   'headerFullLocation': 'Fennpfuhl, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.5291000045, 'lng': 13.489482395336175},
    'sw': {'lat': 52.5200999955, 'lng': 13.474717604663827}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '589af0b114fb4104e45d1496',
        'name': 'Cafe Blaupause',
        'location': {'lat': 52.52541,
         'lng': 13.483253,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52541,
           'lng': 13.483253}],
         'distance': 119,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-589af0b114fb4104e45d1496-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f71c518e4b03bf2b01b6bd5',
        'name': 'Kaffee-Haus Madlen',
        'location': {'address': 'Weißenseer Weg 112',
         'lat': 52.5267567523435,
         'lng': 13.478349937479729,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5267567523435,
           'lng': 13.478349937479729}],
         'distance': 349,
         'postalCode': '10369',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weißenseer Weg 112',
          '10369 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f71c518e4b03bf2b01b6bd5-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4de7d4841838131a855f0f77',
        'name': 'BoboQ Lichtenberg',
        'location': {'address': 'Herzbergstr./Industriegebiet',
         'lat': 52.52664140238475,
         'lng': 13.48826673911455,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52664140238475,
           'lng': 13.48826673911455}],
         'distance': 475,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Herzbergstr./Industriegebiet',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4de7d4841838131a855f0f77-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4766505c5f6f892921'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Fennpfuhl',
   'headerFullLocation': 'Fennpfuhl, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5340000045, 'lng': 13.476883218979323},
    'sw': {'lat': 52.524999995499996, 'lng': 13.462116781020677}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ecfabd277c8ea62fb297b15',
        'name': 'Plötners Café',
        'location': {'address': 'Anton-Saefkow-Platz 11',
         'lat': 52.52918481002098,
         'lng': 13.47068268269635,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52918481002098,
           'lng': 13.47068268269635}],
         'distance': 87,
         'postalCode': '10369',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Anton-Saefkow-Platz 11',
          '10369 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ecfabd277c8ea62fb297b15-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f48d9a71631446b263c'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Kollwitzkiez',
   'headerFullLocation': 'Kollwitzkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 28,
   'suggestedBounds': {'ne': {'lat': 52.539700004500006,
     'lng': 13.433084177394056},
    'sw': {'lat': 52.5306999955, 'lng': 13.418315822605946}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d40494a287ebc0008a68e45',
        'name': 'Cafelix',
        'location': {'address': 'Winsstraße 47',
         'lat': 52.535471,
         'lng': 13.426628,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.535471,
           'lng': 13.426628}],
         'distance': 69,
         'cc': 'DE',
         'neighborhood': 'Kollwitzkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winsstraße 47', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d40494a287ebc0008a68e45-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c2fd688475abd0039875069',
        'name': 'Archetyp Berlin',
        'location': {'address': 'Marienburger Strasse 5',
         'lat': 52.53490584169249,
         'lng': 13.42354953289032,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53490584169249,
           'lng': 13.42354953289032}],
         'distance': 149,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marienburger Strasse 5',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c2fd688475abd0039875069-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af91f00f964a520091122e3',
        'name': 'Godshot',
        'location': {'address': 'Immanuelkirchstr. 32',
         'lat': 52.53306706135371,
         'lng': 13.422710312168903,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53306706135371,
           'lng': 13.422710312168903}],
         'distance': 312,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Immanuelkirchstr. 32',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '55842506'}},
       'referralId': 'e-0-4af91f00f964a520091122e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c7fe16dd92ea09380c63272',
        'name': 'Kaffe',
        'location': {'address': 'Immanuelkirchstr. 6',
         'lat': 52.53269343303695,
         'lng': 13.423200845718384,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53269343303695,
           'lng': 13.423200845718384}],
         'distance': 326,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Immanuelkirchstr. 6',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c7fe16dd92ea09380c63272-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d592d93676ceb00074f2cb4',
        'name': 'Plant Base',
        'location': {'address': 'Prenzlauer Allee 208',
         'lat': 52.536843,
         'lng': 13.42244,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.536843,
           'lng': 13.42244}],
         'distance': 286,
         'postalCode': '10405',
         'cc': 'DE',
         'neighborhood': 'Kollwitzkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prenzlauer Allee 208',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d592d93676ceb00074f2cb4-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4afafa28f964a520071a22e3',
        'name': 'No Fire No Glory',
        'location': {'address': 'Rykestraße 45',
         'lat': 52.53666,
         'lng': 13.420291,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53666,
           'lng': 13.420291}],
         'distance': 400,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rykestraße 45', '10405 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '34475687'}},
       'referralId': 'e-0-4afafa28f964a520071a22e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56f39a12498e8886f31f57d2',
        'name': 'Café Neue Liebe',
        'location': {'address': 'Rykestr. 42',
         'lat': 52.53707821644291,
         'lng': 13.42097486201507,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53707821644291,
           'lng': 13.42097486201507}],
         'distance': 382,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rykestr. 42', '10405 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '214437962'}},
       'referralId': 'e-0-56f39a12498e8886f31f57d2-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c1cbb7863750f479ff7b667',
        'name': 'Aromas Café',
        'location': {'address': 'Marienburger Str. 26a',
         'lat': 52.533268619510075,
         'lng': 13.428851459516046,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.533268619510075,
           'lng': 13.428851459516046}],
         'distance': 302,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marienburger Str. 26a',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c1cbb7863750f479ff7b667-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b44d268f964a5203afd25e3',
        'name': 'Cafe Seeblick',
        'location': {'address': 'Rykestr. 14',
         'lat': 52.53669094347613,
         'lng': 13.420664889267158,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53669094347613,
           'lng': 13.420664889267158}],
         'distance': 379,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rykestr. 14', '10405 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b44d268f964a5203afd25e3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adf5adff964a520cc7921e3',
        'name': 'Kaffeehaus SowohlAlsAuch',
        'location': {'address': 'Kollwitzstr. 88',
         'crossStreet': 'Sredzkistr.',
         'lat': 52.5383319182967,
         'lng': 13.420599102973938,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5383319182967,
           'lng': 13.420599102973938}],
         'distance': 490,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kollwitzstr. 88 (Sredzkistr.)',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adf5adff964a520cc7921e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52d6c316498e69c927b71572',
        'name': 'Lieschen Müller',
        'location': {'address': 'Christburger Str. 13',
         'lat': 52.535429692645245,
         'lng': 13.428133507110116,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.535429692645245,
           'lng': 13.428133507110116}],
         'distance': 166,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Christburger Str. 13',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '86953158'}},
       'referralId': 'e-0-52d6c316498e69c927b71572-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e47c672d164155c0df6ce20',
        'name': 'Esperimento',
        'location': {'address': 'Sredzkistr. 63',
         'lat': 52.53747787558684,
         'lng': 13.422182491995837,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53747787558684,
           'lng': 13.422182491995837}],
         'distance': 347,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sredzkistr. 63',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e47c672d164155c0df6ce20-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c1dc3cb63750f471ad7b867',
        'name': 'Einstern Coffee Bar',
        'location': {'address': 'Prenzlauer Allee 195',
         'lat': 52.53962429766169,
         'lng': 13.424449930469796,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53962429766169,
           'lng': 13.424449930469796}],
         'distance': 499,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prenzlauer Allee 195',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c1dc3cb63750f471ad7b867-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c4ac1e49e6dbe9aea5d060b',
        'name': 'Coffee Star',
        'location': {'address': 'Wörther Str. 23',
         'crossStreet': 'Prenzlauer Allee',
         'lat': 52.53562697145735,
         'lng': 13.421435952186584,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53562697145735,
           'lng': 13.421435952186584}],
         'distance': 292,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wörther Str. 23 (Prenzlauer Allee)',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c4ac1e49e6dbe9aea5d060b-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f4f7118e4b09d63cc67d45c',
        'name': 'Espresso & Co',
        'location': {'lat': 52.53225660831213,
         'lng': 13.428343496395666,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53225660831213,
           'lng': 13.428343496395666}],
         'distance': 373,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f4f7118e4b09d63cc67d45c-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '562cc8db498e33b9f89499d1',
        'name': "Jacky's",
        'location': {'address': 'Hufelandstr. 2',
         'lat': 52.532958311761554,
         'lng': 13.429595938377833,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.532958311761554,
           'lng': 13.429595938377833}],
         'distance': 363,
         'postalCode': '10407',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hufelandstr. 2',
          '10407 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-562cc8db498e33b9f89499d1-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bbb169e7421a593f064c440',
        'name': 'enten und katzen',
        'location': {'address': 'Winsstr. 58',
         'crossStreet': 'Marienburger Str.',
         'lat': 52.53376137484044,
         'lng': 13.42528484999152,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53376137484044,
           'lng': 13.42528484999152}],
         'distance': 162,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winsstr. 58 (Marienburger Str.)',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bbb169e7421a593f064c440-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51b44b56498eb978655734d3',
        'name': 'Simply',
        'location': {'address': 'Pasteurstr. 2',
         'lat': 52.53431860212863,
         'lng': 13.431587611460703,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53431860212863,
           'lng': 13.431587611460703}],
         'distance': 410,
         'postalCode': '10407',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pasteurstr. 2', '10407 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '62385949'}},
       'referralId': 'e-0-51b44b56498eb978655734d3-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5756cb93498e7fd15df87e5a',
        'name': 'Raum Schwalbe',
        'location': {'address': 'Winnstr. 9',
         'lat': 52.53220413516101,
         'lng': 13.423798836475061,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53220413516101,
           'lng': 13.423798836475061}],
         'distance': 357,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winnstr. 9', '10405 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '386457835'}},
       'referralId': 'e-0-5756cb93498e7fd15df87e5a-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f1d4e42e4b0d9f8bb35272f',
        'name': 'Waffelhaus',
        'location': {'address': 'Prenzlauer Allee 230',
         'lat': 52.532524345929694,
         'lng': 13.420241879689058,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.532524345929694,
           'lng': 13.420241879689058}],
         'distance': 474,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prenzlauer Allee 230',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f1d4e42e4b0d9f8bb35272f-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5108dda5e4b0f42b0670d5ae',
        'name': 'Blaumond',
        'location': {'address': 'Immanuelkirchstr. 3',
         'lat': 52.53303669013907,
         'lng': 13.42267598164818,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53303669013907,
           'lng': 13.42267598164818}],
         'distance': 316,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Immanuelkirchstr. 3', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5108dda5e4b0f42b0670d5ae-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bb7686b2ea19521f1dfac2f',
        'name': 'Melis Coffee',
        'location': {'lat': 52.5378020376754,
         'lng': 13.423495179803536,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5378020376754,
           'lng': 13.423495179803536}],
         'distance': 325,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bb7686b2ea19521f1dfac2f-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '599ed4c075cb8c5a38a2df30',
        'name': 'Le Gapias',
        'location': {'address': 'Winsstr',
         'lat': 52.533173,
         'lng': 13.424649,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.533173,
           'lng': 13.424649}],
         'distance': 236,
         'cc': 'DE',
         'neighborhood': 'Kollwitzkiez',
         'country': 'Deutschland',
         'formattedAddress': ['Winsstr', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-599ed4c075cb8c5a38a2df30-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d9ecd4f35a9224ba6383d85',
        'name': 'Perlbohne',
        'location': {'address': 'Wörtherstr. 22',
         'lat': 52.53581390722734,
         'lng': 13.42126938507275,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53581390722734,
           'lng': 13.42126938507275}],
         'distance': 307,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wörtherstr. 22',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d9ecd4f35a9224ba6383d85-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eb7a089b8f786e2761fd25f',
        'name': 'Glücks Marone',
        'location': {'address': 'Knaackstrasse 8',
         'lat': 52.53392178856729,
         'lng': 13.420138535753459,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53392178856729,
           'lng': 13.420138535753459}],
         'distance': 402,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Knaackstrasse 8', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eb7a089b8f786e2761fd25f-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5623a45b498eccd9fb8dc015',
        'name': 'Diderot',
        'location': {'address': 'Raabestr 1',
         'crossStreet': 'Prenzlauer Allee',
         'lat': 52.532369,
         'lng': 13.420595,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.532369,
           'lng': 13.420595}],
         'distance': 467,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raabestr 1 (Prenzlauer Allee)',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5623a45b498eccd9fb8dc015-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '508e51e3e4b06f6d1a73f1ff',
        'name': 'Traum Bäckerei',
        'location': {'address': 'Prenzlauer Allee 195 a',
         'lat': 52.53947062170476,
         'lng': 13.423908948898315,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53947062170476,
           'lng': 13.423908948898315}],
         'distance': 490,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prenzlauer Allee 195 a',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-508e51e3e4b06f6d1a73f1ff-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c11041ac9a517002c56e392',
        'name': 'Café Gut Gezogen',
        'location': {'address': 'Kollwitzstraße 74',
         'lat': 52.537125,
         'lng': 13.419041,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.537125,
           'lng': 13.419041}],
         'distance': 499,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kollwitzstraße 74',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c11041ac9a517002c56e392-27'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f48c656a10ca6aab3be'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Storkower Straße',
   'headerFullLocation': 'Storkower Straße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5381000045, 'lng': 13.456583908332862},
    'sw': {'lat': 52.5290999955, 'lng': 13.441816091667137}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ebd2c4fb6341bd789196663',
        'name': 'Caffé Vergnano 1882',
        'location': {'address': 'Brunnenstrasse 153',
         'lat': 52.53587276658209,
         'lng': 13.450010403347619,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53587276658209,
           'lng': 13.450010403347619}],
         'distance': 258,
         'postalCode': '10115',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brunnenstrasse 153',
          '10115 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ebd2c4fb6341bd789196663-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '581600ccd67cf3f1c1dee0ad',
        'name': 'Neuer Hain',
        'location': {'address': 'Volkspark Friedrichshain',
         'lat': 52.53085220454525,
         'lng': 13.443776657414501,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53085220454525,
           'lng': 13.443776657414501}],
         'distance': 477,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Volkspark Friedrichshain',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-581600ccd67cf3f1c1dee0ad-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4866505c5f6f892e34'},
  'response': {'headerLocation': 'Prenzlauer Berg',
   'headerFullLocation': 'Prenzlauer Berg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.5488000045, 'lng': 13.448785708162127},
    'sw': {'lat': 52.5397999955, 'lng': 13.434014291837872}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '534d1382498ef814e3c131e2',
        'name': 'Café Gold Stück',
        'location': {'address': 'Erich-Weinert-Str. 128',
         'lat': 52.54472,
         'lng': 13.437095,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54472,
           'lng': 13.437095}],
         'distance': 295,
         'postalCode': '10409',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Erich-Weinert-Str. 128',
          '10409 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-534d1382498ef814e3c131e2-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '539f1e4a498ec50859335505',
        'name': 'Kaffee-Haus Madlen',
        'location': {'address': 'Greifswalder Str. 154',
         'lat': 52.54433832732874,
         'lng': 13.441944122314453,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54433832732874,
           'lng': 13.441944122314453}],
         'distance': 37,
         'postalCode': '10409',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Greifswalder Str. 154',
          '10409 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-539f1e4a498ec50859335505-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5628e658498ef002211cd0a7',
        'name': 'Il Centro',
        'location': {'lat': 52.543346,
         'lng': 13.442177,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.543346,
           'lng': 13.442177}],
         'distance': 118,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5628e658498ef002211cd0a7-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f4b3d5be4b096208a658b84',
        'name': 'Melis Coffee 3',
        'location': {'address': 'Greifswalder Str. 137',
         'crossStreet': 'Ostseestrasse',
         'lat': 52.54579983002438,
         'lng': 13.445150279898266,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54579983002438,
           'lng': 13.445150279898266}],
         'distance': 303,
         'postalCode': '10409',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Greifswalder Str. 137 (Ostseestrasse)',
          '10409 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f4b3d5be4b096208a658b84-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f49726940047d4fcaa3'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schönhauser Allee-Süd',
   'headerFullLocation': 'Schönhauser Allee-Süd, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 23,
   'suggestedBounds': {'ne': {'lat': 52.5423000045, 'lng': 13.418584614672602},
    'sw': {'lat': 52.533299995499995, 'lng': 13.4038153853274}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4faea556e4b0ec82893bbb05',
        'name': 'Nothaft',
        'location': {'address': 'Schönhauser Allee 43a',
         'crossStreet': 'Danziger Str.',
         'lat': 52.540269136969584,
         'lng': 13.412257663002183,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.540269136969584,
           'lng': 13.412257663002183}],
         'distance': 284,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 43a (Danziger Str.)',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '103365601'}},
       'referralId': 'e-0-4faea556e4b0ec82893bbb05-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520c24621e3',
        'name': 'Kauf Dich Glücklich',
        'location': {'address': 'Oderberger Str. 44',
         'lat': 52.53942444662857,
         'lng': 13.407460064934028,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53942444662857,
           'lng': 13.407460064934028}],
         'distance': 311,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Str. 44',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520c24621e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cdffd61f8cdb1f7bcad9412',
        'name': 'Café KRONE',
        'location': {'address': 'Oderberger Str. 38',
         'lat': 52.539851664730676,
         'lng': 13.40614232632102,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.539851664730676,
           'lng': 13.40614232632102}],
         'distance': 411,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Str. 38',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cdffd61f8cdb1f7bcad9412-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '593917d34928140396e2e3a0',
        'name': 'Rosa Wolf',
        'location': {'address': 'Eberswalder Str. 32',
         'lat': 52.541104,
         'lng': 13.409779,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541104,
           'lng': 13.409779}],
         'distance': 380,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eberswalder Str. 32',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-593917d34928140396e2e3a0-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af28ef8f964a520eae721e3',
        'name': 'Bonanza Coffee',
        'location': {'address': 'Oderberger Str. 35',
         'lat': 52.539992653508016,
         'lng': 13.405530452728271,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.539992653508016,
           'lng': 13.405530452728271}],
         'distance': 454,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Str. 35',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af28ef8f964a520eae721e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520884621e3',
        'name': 'Barista',
        'location': {'address': 'Oderberger Str. 54',
         'lat': 52.53849907239267,
         'lng': 13.409857404910762,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53849907239267,
           'lng': 13.409857404910762}],
         'distance': 119,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Str. 54',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520884621e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd17cc3046076b0b4dc7171',
        'name': 'Hüftengold',
        'location': {'address': 'Oderberger Straße 27',
         'lat': 52.54012017414925,
         'lng': 13.40594061919277,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54012017414925,
           'lng': 13.40594061919277}],
         'distance': 439,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Straße 27',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd17cc3046076b0b4dc7171-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55771844498eb08a2079f2a7',
        'name': 'Lorch & Söhne',
        'location': {'address': 'Danziger Str. 25',
         'lat': 52.54037670566916,
         'lng': 13.417087259925681,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54037670566916,
           'lng': 13.417087259925681}],
         'distance': 491,
         'postalCode': '10435',
         'cc': 'DE',
         'neighborhood': 'Helmholtzkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Danziger Str. 25',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55771844498eb08a2079f2a7-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd2ffb89854d13a05a0fc4d',
        'name': 'An einem Sonntag im August',
        'location': {'address': 'Kastanienallee 94-103',
         'lat': 52.540128,
         'lng': 13.411574,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.540128,
           'lng': 13.411574}],
         'distance': 260,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 94-103',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd2ffb89854d13a05a0fc4d-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cd90b23145fa1cd5b7409bd',
        'name': 'Morning Glory',
        'location': {'address': 'Kastanienallee 75',
         'lat': 52.536304951961455,
         'lng': 13.407307202431772,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.536304951961455,
           'lng': 13.407307202431772}],
         'distance': 311,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 75',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cd90b23145fa1cd5b7409bd-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ade2aedf964a520867321e3',
        'name': 'Haliflor',
        'location': {'address': 'Schwedter Str. 26',
         'lat': 52.535321256116106,
         'lng': 13.406845887934676,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.535321256116106,
           'lng': 13.406845887934676}],
         'distance': 403,
         'postalCode': '10119',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schwedter Str. 26',
          '10119 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ade2aedf964a520867321e3-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54548df1498e1fd1b28db69f',
        'name': 'Linnen Café',
        'location': {'address': 'Eberswalder Str. 35',
         'lat': 52.54142820895986,
         'lng': 13.408899307250977,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54142820895986,
           'lng': 13.408899307250977}],
         'distance': 432,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eberswalder Str. 35',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54548df1498e1fd1b28db69f-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adf5a4af964a520c47921e3',
        'name': 'November',
        'location': {'address': 'Husemannstr. 15',
         'lat': 52.53833168816423,
         'lng': 13.417484834768603,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53833168816423,
           'lng': 13.417484834768603}],
         'distance': 429,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Husemannstr. 15',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adf5a4af964a520c47921e3-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54fc6976498e7270521192cf',
        'name': 'Café Fräulein Dietrich',
        'location': {'address': 'Fürstenberger Straße 14',
         'lat': 52.53717681138397,
         'lng': 13.403985601851556,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53717681138397,
           'lng': 13.403985601851556}],
         'distance': 493,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fürstenberger Straße 14',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54fc6976498e7270521192cf-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4baf47def964a52050f53be3',
        'name': 'Kollberg35',
        'location': {'address': 'Wörther Str. 35',
         'lat': 52.53656685018438,
         'lng': 13.41770199418893,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53656685018438,
           'lng': 13.41770199418893}],
         'distance': 461,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wörther Str. 35',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '90125594'}},
       'referralId': 'e-0-4baf47def964a52050f53be3-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b3a08eaf964a5206b6025e3',
        'name': 'Ost Fee',
        'location': {'address': 'Oderberger Str. 32-52',
         'lat': 52.53993,
         'lng': 13.406591,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53993,
           'lng': 13.406591}],
         'distance': 391,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oderberger Str. 32-52',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b3a08eaf964a5206b6025e3-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4aaa6225f964a520ca5520e3',
        'name': 'Kaffee Marlene',
        'location': {'address': 'Kastanienallee 103',
         'lat': 52.54005485685901,
         'lng': 13.41135540536447,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54005485685901,
           'lng': 13.41135540536447}],
         'distance': 251,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kastanienallee 103',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '541293222'}},
       'referralId': 'e-0-4aaa6225f964a520ca5520e3-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5979e11b3b830725807bbc5a',
        'name': 'Spooning Cookie Dough Bar',
        'location': {'address': 'Kollwitzstr. 56',
         'crossStreet': 'Knaackstr.',
         'lat': 52.53513618060891,
         'lng': 13.416773127478546,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53513618060891,
           'lng': 13.416773127478546}],
         'distance': 479,
         'postalCode': '10405',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kollwitzstr. 56 (Knaackstr.)',
          '10405 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '543185354'}},
       'referralId': 'e-0-5979e11b3b830725807bbc5a-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d824bc878308eecba7c742b',
        'name': 'Benjowski Teehandelshaus',
        'location': {'address': 'Danziger Str. 3',
         'lat': 52.54092734694728,
         'lng': 13.412880966195045,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54092734694728,
           'lng': 13.412880966195045}],
         'distance': 366,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Danziger Str. 3',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d824bc878308eecba7c742b-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57f767fecd10bc66139d7e7d',
        'name': 'Coffee Fellows',
        'location': {'address': 'Pappelallee 1',
         'crossStreet': 'Danziger Str.',
         'lat': 52.541046456394604,
         'lng': 13.412630215293834,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541046456394604,
           'lng': 13.412630215293834}],
         'distance': 374,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pappelallee 1 (Danziger Str.)',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57f767fecd10bc66139d7e7d-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc2611cfa7608e86fd7c06f',
        'name': 'Toscana Espressobar',
        'location': {'address': 'Lychener Straße 5',
         'lat': 52.541051517824584,
         'lng': 13.414620491855063,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541051517824584,
           'lng': 13.414620491855063}],
         'distance': 429,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lychener Straße 5',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc2611cfa7608e86fd7c06f-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bf547d494af2d7f847f3b72',
        'name': 'FIEBIs - Süß & Salzig',
        'location': {'address': 'Danziger Str. 25',
         'lat': 52.54035374892259,
         'lng': 13.417021981463305,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54035374892259,
           'lng': 13.417021981463305}],
         'distance': 486,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Danziger Str. 25',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bf547d494af2d7f847f3b72-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ba4f44bf964a52000c838e3',
        'name': 'Ludmilla',
        'location': {'address': 'Sredzkistr. 33',
         'lat': 52.53839708012759,
         'lng': 13.417112842995403,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53839708012759,
           'lng': 13.417112842995403}],
         'distance': 405,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sredzkistr. 33',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ba4f44bf964a52000c838e3-22'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f493023093e62f04b45'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schönhauser Allee-Nord',
   'headerFullLocation': 'Schönhauser Allee-Nord, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 30,
   'suggestedBounds': {'ne': {'lat': 52.5494000045, 'lng': 13.41998580912074},
    'sw': {'lat': 52.540399995499996, 'lng': 13.405214190879258}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53d95fce498e8e0d4b39488c',
        'name': 'CAFÉ gestern, heute & morgen',
        'location': {'address': 'Gaudystr. 1',
         'crossStreet': 'Schönhauser Allee',
         'lat': 52.546792,
         'lng': 13.412589,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.546792,
           'lng': 13.412589}],
         'distance': 210,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gaudystr. 1 (Schönhauser Allee)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53d95fce498e8e0d4b39488c-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4be533992457a593823cab15',
        'name': 'Pakolat',
        'location': {'address': 'Raumerstr. 40',
         'lat': 52.54381372971663,
         'lng': 13.416153352998345,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54381372971663,
           'lng': 13.416153352998345}],
         'distance': 269,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raumerstr. 40', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4be533992457a593823cab15-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b18388cf964a5200acf23e3',
        'name': 'Le Midi',
        'location': {'address': 'Greifenhagener Str. 17',
         'lat': 52.547169424024155,
         'lng': 13.415257964432527,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547169424024155,
           'lng': 13.415257964432527}],
         'distance': 310,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Greifenhagener Str. 17',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b18388cf964a5200acf23e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b1a0e35f964a52041e723e3',
        'name': 'Blumencafé',
        'location': {'address': 'Schönhauser Allee 127a',
         'lat': 52.54612798568233,
         'lng': 13.412913624488402,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54612798568233,
           'lng': 13.412913624488402}],
         'distance': 138,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 127a',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b1a0e35f964a52041e723e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54e8876d498e51bac91b4b7a',
        'name': 'Wim Kaffee',
        'location': {'address': 'Rhinower Str. 1',
         'lat': 52.54782110753511,
         'lng': 13.409815194969818,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54782110753511,
           'lng': 13.409815194969818}],
         'distance': 375,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rhinower Str. 1', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54e8876d498e51bac91b4b7a-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b7407f2f964a5209ec42de3',
        'name': 'Bar Salumeria Sigismondo',
        'location': {'address': 'Kopenhagener Str. 6',
         'lat': 52.54885574142543,
         'lng': 13.411567326359338,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54885574142543,
           'lng': 13.411567326359338}],
         'distance': 445,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kopenhagener Str. 6',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b7407f2f964a5209ec42de3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af5ff75f964a520f7ff21e3',
        'name': 'Café Butter',
        'location': {'address': 'Pappelallee 73',
         'lat': 52.544014850331,
         'lng': 13.41544470335191,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.544014850331,
           'lng': 13.41544470335191}],
         'distance': 216,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pappelallee 73',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af5ff75f964a520f7ff21e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a5208c4621e3',
        'name': 'Wohnzimmer',
        'location': {'address': 'Lettestr. 6',
         'crossStreet': 'Schliemannstr.',
         'lat': 52.543396390064636,
         'lng': 13.419287620066626,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.543396390064636,
           'lng': 13.419287620066626}],
         'distance': 482,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lettestr. 6 (Schliemannstr.)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a5208c4621e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ff43e91e4b05ae522c86f34',
        'name': 'Caffè Monelli',
        'location': {'address': 'Greifenhagener Straße 53',
         'lat': 52.547962,
         'lng': 13.415492,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547962,
           'lng': 13.415492}],
         'distance': 393,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Greifenhagener Straße 53',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ff43e91e4b05ae522c86f34-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '593917d34928140396e2e3a0',
        'name': 'Rosa Wolf',
        'location': {'address': 'Eberswalder Str. 32',
         'lat': 52.541104,
         'lng': 13.409779,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541104,
           'lng': 13.409779}],
         'distance': 463,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eberswalder Str. 32',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-593917d34928140396e2e3a0-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cbaea0c9552b60cf3dddc8b',
        'name': 'Krümel',
        'location': {'address': 'Stargarder Str. 73',
         'lat': 52.54686452998733,
         'lng': 13.417434498363193,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54686452998733,
           'lng': 13.417434498363193}],
         'distance': 393,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stargarder Str. 73',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cbaea0c9552b60cf3dddc8b-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a5ca954fc9e94066537331d',
        'name': 'Tilda',
        'location': {'address': 'Raumerstr. 7',
         'crossStreet': 'Helmholtzplatz',
         'lat': 52.5429469102725,
         'lng': 13.4177827835083,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5429469102725,
           'lng': 13.4177827835083}],
         'distance': 412,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raumerstr. 7 (Helmholtzplatz)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a5ca954fc9e94066537331d-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a5208e4621e3',
        'name': 'Marietta',
        'location': {'address': 'Stargarder Str. 13',
         'lat': 52.54682913858359,
         'lng': 13.417461549794265,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54682913858359,
           'lng': 13.417461549794265}],
         'distance': 392,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stargarder Str. 13',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a5208e4621e3-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b437031a6031c002cac30d9',
        'name': 'Samer Café',
        'location': {'address': 'Gleimstr. 44',
         'lat': 52.547334,
         'lng': 13.408378,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547334,
           'lng': 13.408378}],
         'distance': 393,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleimstr. 44', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b437031a6031c002cac30d9-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53cb7a3b498e9b1d665b41a1',
        'name': 'norah',
        'location': {'lat': 52.546919,
         'lng': 13.406335,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.546919,
           'lng': 13.406335}],
         'distance': 479,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53cb7a3b498e9b1d665b41a1-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '556da04e498e12a6fc504fc5',
        'name': 'Café BOM',
        'location': {'address': 'Kopenhagener Straße 7',
         'lat': 52.548838233786846,
         'lng': 13.411160528556207,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.548838233786846,
           'lng': 13.411160528556207}],
         'distance': 449,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kopenhagener Straße 7',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-556da04e498e12a6fc504fc5-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54548df1498e1fd1b28db69f',
        'name': 'Linnen Café',
        'location': {'address': 'Eberswalder Str. 35',
         'lat': 52.54142820895986,
         'lng': 13.408899307250977,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54142820895986,
           'lng': 13.408899307250977}],
         'distance': 460,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eberswalder Str. 35',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54548df1498e1fd1b28db69f-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58df7db7d772f93b136a5832',
        'name': 'Wanderlust Café & Yoga',
        'location': {'address': 'Gleimstr. 40',
         'crossStreet': 'Rhinower Str.',
         'lat': 52.54739274268762,
         'lng': 13.409551979957337,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54739274268762,
           'lng': 13.409551979957337}],
         'distance': 345,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleimstr. 40 (Rhinower Str.)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58df7db7d772f93b136a5832-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6b1c94e4b0a9c2c159d96e',
        'name': 'Cafe Rhino',
        'location': {'address': 'Rhinower Str. 5',
         'crossStreet': 'Kopenhagener Str.',
         'lat': 52.54846175740072,
         'lng': 13.409976094261825,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54846175740072,
           'lng': 13.409976094261825}],
         'distance': 434,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rhinower Str. 5 (Kopenhagener Str.)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6b1c94e4b0a9c2c159d96e-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e27cb2f18384dd0a0d9ddfe',
        'name': 'Zuccherino',
        'location': {'address': 'Gleimstr. 20 A',
         'crossStreet': 'Cantianstr.',
         'lat': 52.54729312764255,
         'lng': 13.409788188998656,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54729312764255,
           'lng': 13.409788188998656}],
         'distance': 327,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleimstr. 20 A (Cantianstr.)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e27cb2f18384dd0a0d9ddfe-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c48954676d72d7f9df7404d',
        'name': 'Freiraum',
        'location': {'address': 'Buchholzer Str. 5',
         'crossStreet': 'Greifenhagener Straße',
         'lat': 52.54513757303052,
         'lng': 13.41486425630556,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54513757303052,
           'lng': 13.41486425630556}],
         'distance': 155,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Buchholzer Str. 5 (Greifenhagener Straße)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c48954676d72d7f9df7404d-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e6363ea7d8b85408a0ffe65',
        'name': 'Schrippenschuster',
        'location': {'address': 'Raumerstr. 9',
         'lat': 52.54295449098173,
         'lng': 13.418245458627403,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54295449098173,
           'lng': 13.418245458627403}],
         'distance': 439,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raumerstr. 9', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e6363ea7d8b85408a0ffe65-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57cc0eea498eb312ca040891',
        'name': 'kulteis',
        'location': {'lat': 52.547179,
         'lng': 13.408971,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547179,
           'lng': 13.408971}],
         'distance': 353,
         'cc': 'DE',
         'neighborhood': 'Schönhauser Allee-Nord',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57cc0eea498eb312ca040891-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d46b3a6ab5d1c0008975073',
        'name': 'ShuGa',
        'location': {'lat': 52.547402,
         'lng': 13.408804,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547402,
           'lng': 13.408804}],
         'distance': 378,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d46b3a6ab5d1c0008975073-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c2e69ea037be1002ceef4c5',
        'name': 'YogaCafé - Mindful Life',
        'location': {'address': 'Gleimstraße 40',
         'lat': 52.5477687,
         'lng': 13.4094383,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5477687,
           'lng': 13.4094383}],
         'distance': 384,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleimstraße 40',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '583945090'}},
       'referralId': 'e-0-5c2e69ea037be1002ceef4c5-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57f767fecd10bc66139d7e7d',
        'name': 'Coffee Fellows',
        'location': {'address': 'Pappelallee 1',
         'crossStreet': 'Danziger Str.',
         'lat': 52.541046456394604,
         'lng': 13.412630215293834,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541046456394604,
           'lng': 13.412630215293834}],
         'distance': 428,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pappelallee 1 (Danziger Str.)',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57f767fecd10bc66139d7e7d-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5f98447b1f67181f27749a2a',
        'name': 'Schrippenschuster Berlin',
        'location': {'address': 'Raumerstr. 9',
         'lat': 52.5427945,
         'lng': 13.4180771,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5427945,
           'lng': 13.4180771}],
         'distance': 438,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raumerstr. 9', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5f98447b1f67181f27749a2a-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e7ccb68f4be320008f71162',
        'name': 'Luongo Angelo Schrippenschuster Bäckerei Cafe´',
        'location': {'address': 'Raumerstr. 9',
         'lat': 52.5427945,
         'lng': 13.4180771,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5427945,
           'lng': 13.4180771}],
         'distance': 438,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Raumerstr. 9', '10437 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '585671898'}},
       'referralId': 'e-0-5e7ccb68f4be320008f71162-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d824bc878308eecba7c742b',
        'name': 'Benjowski Teehandelshaus',
        'location': {'address': 'Danziger Str. 3',
         'lat': 52.54092734694728,
         'lng': 13.412880966195045,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54092734694728,
           'lng': 13.412880966195045}],
         'distance': 442,
         'postalCode': '10435',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Danziger Str. 3',
          '10435 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d824bc878308eecba7c742b-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc2611cfa7608e86fd7c06f',
        'name': 'Toscana Espressobar',
        'location': {'address': 'Lychener Straße 5',
         'lat': 52.541051517824584,
         'lng': 13.414620491855063,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541051517824584,
           'lng': 13.414620491855063}],
         'distance': 449,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lychener Straße 5',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc2611cfa7608e86fd7c06f-29'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4a3a1e82333e94b286'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schönhauser Allee-Nord',
   'headerFullLocation': 'Schönhauser Allee-Nord, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 22,
   'suggestedBounds': {'ne': {'lat': 52.5567000045, 'lng': 13.419487037736545},
    'sw': {'lat': 52.5476999955, 'lng': 13.404712962263456}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '544b8506498eac061c29ed1e',
        'name': 'Lola was here',
        'location': {'address': 'Seelower Str. 8',
         'crossStreet': 'Arnimplatz',
         'lat': 52.55190000123299,
         'lng': 13.410665714790376,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55190000123299,
           'lng': 13.410665714790376}],
         'distance': 102,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Seelower Str. 8 (Arnimplatz)',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '216103364'}},
       'referralId': 'e-0-544b8506498eac061c29ed1e-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af3de8af964a52082ef21e3',
        'name': 'Cafe Sgaminegg',
        'location': {'address': 'Seelower Str. 2',
         'lat': 52.55049861916095,
         'lng': 13.410302748854456,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55049861916095,
           'lng': 13.410302748854456}],
         'distance': 225,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Seelower Str. 2',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af3de8af964a52082ef21e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b7407f2f964a5209ec42de3',
        'name': 'Bar Salumeria Sigismondo',
        'location': {'address': 'Kopenhagener Str. 6',
         'lat': 52.54885574142543,
         'lng': 13.411567326359338,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54885574142543,
           'lng': 13.411567326359338}],
         'distance': 374,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kopenhagener Str. 6',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b7407f2f964a5209ec42de3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59636fb6e2da191dcb678a07',
        'name': 'Unser Café',
        'location': {'address': 'Dänenstr. 14',
         'lat': 52.550083,
         'lng': 13.408408,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.550083,
           'lng': 13.408408}],
         'distance': 343,
         'postalCode': '10439',
         'cc': 'DE',
         'neighborhood': 'Schönhauser Allee-Nord',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dänenstr. 14', '10439 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59636fb6e2da191dcb678a07-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b24dd41f964a520386a24e3',
        'name': 'Café Milchbart',
        'location': {'address': 'Paul-Robeson-Str. 6',
         'lat': 52.552332131592664,
         'lng': 13.411752938228044,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.552332131592664,
           'lng': 13.411752938228044}],
         'distance': 27,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Robeson-Str. 6',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b24dd41f964a520386a24e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '535cffd7498e40a294172ad0',
        'name': 'Schneiderei',
        'location': {'address': 'Kuglerstr. 31',
         'lat': 52.55214401770024,
         'lng': 13.419189436197248,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55214401770024,
           'lng': 13.419189436197248}],
         'distance': 479,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kuglerstr. 31', '10439 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-535cffd7498e40a294172ad0-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '556da04e498e12a6fc504fc5',
        'name': 'Café BOM',
        'location': {'address': 'Kopenhagener Straße 7',
         'lat': 52.548838233786846,
         'lng': 13.411160528556207,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.548838233786846,
           'lng': 13.411160528556207}],
         'distance': 379,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kopenhagener Straße 7',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-556da04e498e12a6fc504fc5-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b86ab8af964a520409531e3',
        'name': 'Sonntags-Club',
        'location': {'address': 'Greifenhagener Str. 28',
         'lat': 52.551277013837286,
         'lng': 13.418536362155976,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.551277013837286,
           'lng': 13.418536362155976}],
         'distance': 447,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Greifenhagener Str. 28',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b86ab8af964a520409531e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c82662ec0f163002cacd4a7',
        'name': 'Naschpunkt',
        'location': {'address': 'Seelower Str. 4',
         'lat': 52.551089,
         'lng': 13.410586,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.551089,
           'lng': 13.410586}],
         'distance': 160,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Seelower Str. 4',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c82662ec0f163002cacd4a7-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bab56fbf964a520b7a13ae3',
        'name': 'Elf',
        'location': {'address': 'Paul-Robeson-Str. 11',
         'crossStreet': 'Arnimplatz',
         'lat': 52.552593,
         'lng': 13.409639,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.552593,
           'lng': 13.409639}],
         'distance': 172,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Robeson-Str. 11 (Arnimplatz)',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bab56fbf964a520b7a13ae3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d29a8d0abc6ee0023306238',
        'name': 'Espresso House',
        'location': {'address': 'Schönhauser Allee 116',
         'crossStreet': 'Dänenstr.',
         'lat': 52.549843,
         'lng': 13.413288,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.549843,
           'lng': 13.413288}],
         'distance': 274,
         'postalCode': '10439',
         'cc': 'DE',
         'neighborhood': 'Schönhauser Allee-Nord',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 116 (Dänenstr.)',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d29a8d0abc6ee0023306238-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '518e5434498ef0d38fe36497',
        'name': 'Café Arnim',
        'location': {'address': 'Paul-Robeson-Str. 14',
         'lat': 52.552682641732666,
         'lng': 13.40878665447235,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.552682641732666,
           'lng': 13.40878665447235}],
         'distance': 230,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Robeson-Str. 14',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-518e5434498ef0d38fe36497-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6b1c94e4b0a9c2c159d96e',
        'name': 'Cafe Rhino',
        'location': {'address': 'Rhinower Str. 5',
         'crossStreet': 'Kopenhagener Str.',
         'lat': 52.54846175740072,
         'lng': 13.409976094261825,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54846175740072,
           'lng': 13.409976094261825}],
         'distance': 440,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rhinower Str. 5 (Kopenhagener Str.)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6b1c94e4b0a9c2c159d96e-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '589270f59c439d22b7aa899f',
        'name': 'Pjano Please',
        'location': {'address': 'Schivelbeinerstr. 8',
         'lat': 52.551016,
         'lng': 13.411354,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.551016,
           'lng': 13.411354}],
         'distance': 141,
         'cc': 'DE',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schivelbeinerstr. 8', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-589270f59c439d22b7aa899f-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5dfc9a55c73f09000834e115',
        'name': 'P-Berg Coffee',
        'location': {'lat': 52.55291,
         'lng': 13.414805,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55291,
           'lng': 13.414805}],
         'distance': 199,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5dfc9a55c73f09000834e115-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58e0d75f03cf2507c40e8cc6',
        'name': 'Les Enfants Du Paradis',
        'location': {'address': 'Schönfließer Str. 16',
         'lat': 52.55149,
         'lng': 13.40802,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55149,
           'lng': 13.40802}],
         'distance': 287,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönfließer Str. 16',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58e0d75f03cf2507c40e8cc6-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ba8cda38b98fd002c664308',
        'name': 'Kaffee Schiller',
        'location': {'address': 'Schönhauser Allee 80',
         'lat': 52.549746,
         'lng': 13.414196,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.549746,
           'lng': 13.414196}],
         'distance': 307,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 80',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ba8cda38b98fd002c664308-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e8c4a4f6c25fbeecd8173c2',
        'name': 'Maître vite',
        'location': {'address': 'Schönhauser Allee 79',
         'lat': 52.54941686896794,
         'lng': 13.415170473742581,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54941686896794,
           'lng': 13.415170473742581}],
         'distance': 373,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 79',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e8c4a4f6c25fbeecd8173c2-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b226155f964a520274624e3',
        'name': 'World Coffee',
        'location': {'address': 'Schönhauser Allee 79-80',
         'lat': 52.549561524605394,
         'lng': 13.414051803585846,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.549561524605394,
           'lng': 13.414051803585846}],
         'distance': 322,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 79-80',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b226155f964a520274624e3-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58dfe748e0adac7f5dd548cb',
        'name': 'Café Dreieck',
        'location': {'address': 'Greifenhagener Straße 38',
         'crossStreet': 'Kuglerstraße',
         'lat': 52.55203,
         'lng': 13.418932,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55203,
           'lng': 13.418932}],
         'distance': 462,
         'postalCode': '10437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Greifenhagener Straße 38 (Kuglerstraße)',
          '10437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58dfe748e0adac7f5dd548cb-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cfa43c70df3236abab5f2a9',
        'name': 'Tchibo',
        'location': {'address': 'Schönhauser Allee 79',
         'lat': 52.54932292485182,
         'lng': 13.415164947509766,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54932292485182,
           'lng': 13.415164947509766}],
         'distance': 381,
         'postalCode': '10439',
         'cc': 'DE',
         'neighborhood': 'Prenzlauer Berg, Berlin',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schönhauser Allee 79',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cfa43c70df3236abab5f2a9-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '525a94db498e437e38f767ab',
        'name': 'my smart break',
        'location': {'address': 'Schoenhauser Allee 79',
         'lat': 52.54957507327583,
         'lng': 13.413973744146181,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54957507327583,
           'lng': 13.413973744146181}],
         'distance': 318,
         'postalCode': '10439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schoenhauser Allee 79',
          '10439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-525a94db498e437e38f767ab-21'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4ad9a71631446b3193'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Turmstraße',
   'headerFullLocation': 'Turmstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 8,
   'suggestedBounds': {'ne': {'lat': 52.535200004500005,
     'lng': 13.344583420724096},
    'sw': {'lat': 52.5261999955, 'lng': 13.329816579275903}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55229e08498e1c00ce660e4c',
        'name': 'Einer dieser Tage',
        'location': {'address': 'Waldstr. 32',
         'lat': 52.53238792130165,
         'lng': 13.3317325258927,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53238792130165,
           'lng': 13.3317325258927}],
         'distance': 415,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Waldstr. 32', '10551 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55229e08498e1c00ce660e4c-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51fd7012498e32e3a0e1ef94',
        'name': 'Tirrée',
        'location': {'address': 'Birkenstr. 46',
         'crossStreet': 'Wilhelmshavener Str.',
         'lat': 52.532153741214614,
         'lng': 13.341539621589543,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.532153741214614,
           'lng': 13.341539621589543}],
         'distance': 335,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Birkenstr. 46 (Wilhelmshavener Str.)',
          '10551 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51fd7012498e32e3a0e1ef94-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51a9f430498e0972655cadef',
        'name': 'Natürlicher Lebensraum',
        'location': {'address': 'Jonasstr. 7',
         'lat': 52.52773631933308,
         'lng': 13.339344263076782,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52773631933308,
           'lng': 13.339344263076782}],
         'distance': 360,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jonasstr. 7', '10551 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51a9f430498e0972655cadef-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c7d0b2b7a856dcb16cce3a7',
        'name': 'Café Zina',
        'location': {'address': 'Waldenserstraße',
         'crossStreet': 'Oldenburger Straße',
         'lat': 52.528644388173525,
         'lng': 13.335838671803234,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.528644388173525,
           'lng': 13.335838671803234}],
         'distance': 246,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Waldenserstraße (Oldenburger Straße)',
          '10551 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c7d0b2b7a856dcb16cce3a7-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '512a2741e4b0701b3776de0c',
        'name': 'cafe creme caramel',
        'location': {'address': 'Pariser Str. 59',
         'crossStreet': 'Fasanenstraße',
         'lat': 52.5322119975596,
         'lng': 13.341787929495089,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5322119975596,
           'lng': 13.341787929495089}],
         'distance': 353,
         'postalCode': '10719',
         'cc': 'DE',
         'neighborhood': 'Turmstraße',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pariser Str. 59 (Fasanenstraße)',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-512a2741e4b0701b3776de0c-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59f45552588e360eb38cbc0f',
        'name': 'Caffè Barletta',
        'location': {'address': 'Arminiusstr. 2-4',
         'lat': 52.52761,
         'lng': 13.338732,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52761,
           'lng': 13.338732}],
         'distance': 359,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Arminiusstr. 2-4',
          '10551 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59f45552588e360eb38cbc0f-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6ca4c6e4b0e42841871270',
        'name': 'Café Moabit',
        'location': {'address': 'Emdener Str. 55',
         'lat': 52.52796099464806,
         'lng': 13.33354183089473,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52796099464806,
           'lng': 13.33354183089473}],
         'distance': 392,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Emdener Str. 55',
          '10551 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6ca4c6e4b0e42841871270-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e2a901ee4cd3bc1668b63cf',
        'name': 'Café Bistro Jonas',
        'location': {'address': 'Jonasstr. 1',
         'lat': 52.52666544887611,
         'lng': 13.339065892548481,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52666544887611,
           'lng': 13.339065892548481}],
         'distance': 466,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jonasstr. 1', '10551 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e2a901ee4cd3bc1668b63cf-7'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4b368fe87225180c78'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Westhafen',
   'headerFullLocation': 'Westhafen, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.535000004500006,
     'lng': 13.328883387098978},
    'sw': {'lat': 52.5259999955, 'lng': 13.314116612901023}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50d04c80e4b08c695e76cf2b',
        'name': 'Lila Pause',
        'location': {'lat': 52.528345347609765,
         'lng': 13.319381390067429,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.528345347609765,
           'lng': 13.319381390067429}],
         'distance': 279,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50d04c80e4b08c695e76cf2b-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c868a1ddc018cfa35fcef6c',
        'name': 'Berlin Turkgucu',
        'location': {'lat': 52.53420422876598,
         'lng': 13.317912337862522,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53420422876598,
           'lng': 13.317912337862522}],
         'distance': 478,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c868a1ddc018cfa35fcef6c-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4ba614367fd9d2dba6'},
  'response': {'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.526000004500006,
     'lng': 13.342881874378595},
    'sw': {'lat': 52.5169999955, 'lng': 13.328118125621405}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5908787235d3fc5e1cc34bfd',
        'name': 'Café Ella',
        'location': {'address': 'Elberfelder Str. 9',
         'lat': 52.522629,
         'lng': 13.335777,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.522629,
           'lng': 13.335777}],
         'distance': 127,
         'postalCode': '10555',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Elberfelder Str. 9',
          '10555 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5908787235d3fc5e1cc34bfd-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bf13fd23a15d13ad8523f9f',
        'name': 'Fiaker',
        'location': {'address': 'Bochumer Str. 5',
         'lat': 52.52369193495437,
         'lng': 13.338041897270227,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52369193495437,
           'lng': 13.338041897270227}],
         'distance': 298,
         'postalCode': '10555',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bochumer Str. 5',
          '10555 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bf13fd23a15d13ad8523f9f-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bdeba8b6198c9b6859a14ff',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Franklinstr. 12',
         'lat': 52.5213186045329,
         'lng': 13.32931133140066,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5213186045329,
           'lng': 13.32931133140066}],
         'distance': 419,
         'postalCode': '10587',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Franklinstr. 12',
          '10587 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bdeba8b6198c9b6859a14ff-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f929368e4b0324618c2281a',
        'name': 'Cafe Spree-Blick',
        'location': {'address': 'Hansabrücke',
         'crossStreet': 'Altonaer Str./Levetzowstr.',
         'lat': 52.5197036775428,
         'lng': 13.338581126558712,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5197036775428,
           'lng': 13.338581126558712}],
         'distance': 289,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hansabrücke (Altonaer Str./Levetzowstr.)',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f929368e4b0324618c2281a-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4b4450ba020e258e17'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Mitte',
   'headerFullLocation': 'Mitte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5278000045, 'lng': 13.36678217685851},
    'sw': {'lat': 52.5187999955, 'lng': 13.352017823141491}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51705ff7e4b0173551a7ad2a',
        'name': 'Ala Eldin',
        'location': {'lat': 52.52506551989954,
         'lng': 13.35829196459464,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52506551989954,
           'lng': 13.35829196459464}],
         'distance': 210,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51705ff7e4b0173551a7ad2a-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4ce998a41dc43dd864'},
  'response': {'headerLocation': 'Moabit',
   'headerFullLocation': 'Moabit, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.5346000045, 'lng': 13.357283319849927},
    'sw': {'lat': 52.525599995499995, 'lng': 13.342516680150073}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50d448aae4b038b59eaeca5e',
        'name': 'Thea & coffee',
        'location': {'address': 'Birkenstr. 19',
         'lat': 52.531051148755026,
         'lng': 13.34619112126696,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.531051148755026,
           'lng': 13.34619112126696}],
         'distance': 272,
         'postalCode': '10559',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Birkenstr. 19', '10559 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50d448aae4b038b59eaeca5e-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5222571d11d296c194bbf117',
        'name': 'Harem',
        'location': {'address': 'Stendalerstraße',
         'lat': 52.5326746600243,
         'lng': 13.351023129976241,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5326746600243,
           'lng': 13.351023129976241}],
         'distance': 296,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stendalerstraße', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5222571d11d296c194bbf117-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56728977498eb6a2164df3f0',
        'name': 'my cafe bar',
        'location': {'lat': 52.531259,
         'lng': 13.343346,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.531259,
           'lng': 13.343346}],
         'distance': 462,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56728977498eb6a2164df3f0-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5be18d056dcf04002c4bd785',
        'name': 'Trunk Meer Tee',
        'location': {'address': 'Stromstr. 11-17',
         'lat': 52.52787,
         'lng': 13.344039,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52787,
           'lng': 13.344039}],
         'distance': 468,
         'postalCode': '10551',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stromstr. 11-17',
          '10551 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5be18d056dcf04002c4bd785-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4cd91d7d1d4946715f'},
  'response': {'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 6,
   'suggestedBounds': {'ne': {'lat': 52.5197000045, 'lng': 13.31308081595143},
    'sw': {'lat': 52.5106999955, 'lng': 13.29831918404857}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d2dc787f728b60c27859dfd',
        'name': 'Exclusive Coffee',
        'location': {'address': 'Bismarckstr. 46',
         'lat': 52.513408849631595,
         'lng': 13.305343609541598,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513408849631595,
           'lng': 13.305343609541598}],
         'distance': 200,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bismarckstr. 46',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d2dc787f728b60c27859dfd-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53dcd7c9498e33be7840de9c',
        'name': 'Café con amore',
        'location': {'address': 'Girkezeile 31',
         'crossStreet': 'Haubach Str.',
         'lat': 52.51571905790991,
         'lng': 13.3028089578205,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51571905790991,
           'lng': 13.3028089578205}],
         'distance': 204,
         'postalCode': '10585',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Girkezeile 31 (Haubach Str.)',
          '10585 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53dcd7c9498e33be7840de9c-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '524ea7e911d27fc1d2963d01',
        'name': 'La Femme',
        'location': {'address': 'Wilmersdorfer Str. 135',
         'lat': 52.51152117044885,
         'lng': 13.305503740823424,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51152117044885,
           'lng': 13.305503740823424}],
         'distance': 409,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 135',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-524ea7e911d27fc1d2963d01-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e2470a8b61cdcf1ecdc39be',
        'name': 'Sinnbild',
        'location': {'address': 'Wilmersdorfer Str. 153',
         'lat': 52.51470723,
         'lng': 13.30502527,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51470723,
           'lng': 13.30502527}],
         'distance': 71,
         'postalCode': '10585',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 153',
          '10585 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e2470a8b61cdcf1ecdc39be-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d9eff56ecb12c0fc6c55c89',
        'name': 'Tchibo',
        'location': {'address': 'Wilmersdorfer Str. 143-144',
         'lat': 52.513525297050776,
         'lng': 13.305772278055477,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513525297050776,
           'lng': 13.305772278055477}],
         'distance': 186,
         'postalCode': '10585',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 143-144',
          '10585 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d9eff56ecb12c0fc6c55c89-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b02aecbbfc6d0002c0a18f2',
        'name': 'Haus 77 Café',
        'location': {'address': 'Kaiser-Friedrich Str. 77',
         'lat': 52.51159734935449,
         'lng': 13.30174371600151,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51159734935449,
           'lng': 13.30174371600151}],
         'distance': 482,
         'postalCode': '10585',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kaiser-Friedrich Str. 77',
          '10585 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '495103081'}},
       'referralId': 'e-0-5b02aecbbfc6d0002c0a18f2-5'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4d2158a34dc843c84b'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5229000045, 'lng': 13.326881353516143},
    'sw': {'lat': 52.5138999955, 'lng': 13.312118646483857}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b8e7fbff964a520862533e3',
        'name': 'Café Südwind',
        'location': {'address': 'Guerickestr. 38',
         'lat': 52.51777337717899,
         'lng': 13.31636779980607,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51777337717899,
           'lng': 13.31636779980607}],
         'distance': 223,
         'postalCode': '10587',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Guerickestr. 38',
          '10587 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b8e7fbff964a520862533e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b2783cdf964a520088724e3',
        'name': 'Bares Café & Restaurant',
        'location': {'address': 'Helmholtzstraße 37',
         'crossStreet': 'Morsestraße',
         'lat': 52.52120681504498,
         'lng': 13.32273265543714,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52120681504498,
           'lng': 13.32273265543714}],
         'distance': 381,
         'postalCode': '10587',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Helmholtzstraße 37 (Morsestraße)',
          '10587 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b2783cdf964a520088724e3-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4de2d2433c21baf6f4'},
  'response': {'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 7,
   'suggestedBounds': {'ne': {'lat': 52.5321000045, 'lng': 13.313082899579266},
    'sw': {'lat': 52.5230999955, 'lng': 13.298317100420734}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5872b3c7cf445106b7b48db4',
        'name': 'Café Friedrichs',
        'location': {'address': 'Mierendorffplatz 2',
         'crossStreet': 'Nordhauser Str.',
         'lat': 52.52486589999999,
         'lng': 13.3042568,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52486589999999,
           'lng': 13.3042568}],
         'distance': 319,
         'postalCode': '10589',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mierendorffplatz 2 (Nordhauser Str.)',
          '10589 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5872b3c7cf445106b7b48db4-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b433908f964a5202edd25e3',
        'name': 'Coffeemeer',
        'location': {'address': 'Mierendorffplatz 5',
         'lat': 52.52503328882538,
         'lng': 13.303625971170897,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52503328882538,
           'lng': 13.303625971170897}],
         'distance': 318,
         'postalCode': '10589',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mierendorffplatz 5',
          '10589 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b433908f964a5202edd25e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53f1a7ad498e08d76a166740',
        'name': 'Café BrotZeit',
        'location': {'address': 'Mierendorffplatz 18',
         'crossStreet': 'Sömmeringstraße',
         'lat': 52.52591519826176,
         'lng': 13.306438922882078,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52591519826176,
           'lng': 13.306438922882078}],
         'distance': 194,
         'postalCode': '10589',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mierendorffplatz 18 (Sömmeringstraße)',
          '10589 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53f1a7ad498e08d76a166740-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f797c84e4b0eedfe7e3261f',
        'name': 'Flasco',
        'location': {'lat': 52.52634253593326,
         'lng': 13.30469494106534,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52634253593326,
           'lng': 13.30469494106534}],
         'distance': 155,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f797c84e4b0eedfe7e3261f-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59e4d5bdbcbf7a4735bd0a0f',
        'name': 'Agora',
        'location': {'address': 'Agora',
         'crossStreet': 'Mierendorffplatz 13',
         'lat': 52.526062,
         'lng': 13.3041,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.526062,
           'lng': 13.3041}],
         'distance': 202,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Agora (Mierendorffplatz 13)',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59e4d5bdbcbf7a4735bd0a0f-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a520dc4521e3',
        'name': 'Pasticceria e Rosticceria Italiana',
        'location': {'address': 'Leibnizstraße 45',
         'crossStreet': 'Mommsenstraße',
         'lat': 52.52360360700039,
         'lng': 13.306436274240006,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52360360700039,
           'lng': 13.306436274240006}],
         'distance': 447,
         'postalCode': '10629',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leibnizstraße 45 (Mommsenstraße)',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a520dc4521e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '539c5f2a498e9ff3737cedfe',
        'name': 'Coffeetogo',
        'location': {'address': 'Max-Dohrn-Str. 7',
         'crossStreet': 'U7 Jungfernheide, ö. Vorhalle',
         'lat': 52.53084314728766,
         'lng': 13.300774097442627,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53084314728766,
           'lng': 13.300774097442627}],
         'distance': 491,
         'postalCode': '10589',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Max-Dohrn-Str. 7 (U7 Jungfernheide, ö. Vorhalle)',
          '10589 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-539c5f2a498e9ff3737cedfe-6'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4dd64a73472529d654'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Hardenbergstraße',
   'headerFullLocation': 'Hardenbergstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 18,
   'suggestedBounds': {'ne': {'lat': 52.5133000045, 'lng': 13.334779741125919},
    'sw': {'lat': 52.5042999955, 'lng': 13.320020258874083}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520ca4521e3',
        'name': 'Schwarzes Café',
        'location': {'address': 'Kantstr. 148',
         'lat': 52.505455,
         'lng': 13.324221,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.505455,
           'lng': 13.324221}],
         'distance': 430,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 148', '10623 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520ca4521e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ea2ce90dab4725270136918',
        'name': 'Giro',
        'location': {'address': 'Knesebeckstr. 5',
         'lat': 52.51016998072351,
         'lng': 13.323098822469232,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51016998072351,
           'lng': 13.323098822469232}],
         'distance': 328,
         'postalCode': '10623',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Knesebeckstr. 5',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ea2ce90dab4725270136918-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c9b7c1d292a6dcbb2eed776',
        'name': 'WiwiCafé',
        'location': {'address': 'Straße des 17. Juni 135',
         'crossStreet': 'Erweiterungsbau EB',
         'lat': 52.511794052468275,
         'lng': 13.324989080429077,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.511794052468275,
           'lng': 13.324989080429077}],
         'distance': 371,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Straße des 17. Juni 135 (Erweiterungsbau EB)',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c9b7c1d292a6dcbb2eed776-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0d2c7af964a5204b4423e3',
        'name': 'Sagers Kaffee-Rösterei',
        'location': {'address': 'Lotte-Lenya-Bogen 555',
         'lat': 52.5048696783195,
         'lng': 13.32867673251449,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5048696783195,
           'lng': 13.32867673251449}],
         'distance': 445,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lotte-Lenya-Bogen 555',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0d2c7af964a5204b4423e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d2ef8c779dd6ea8487e8dd3',
        'name': 'Mamma Monti',
        'location': {'address': 'Carmerstraße 11',
         'crossStreet': 'Savignyplatz',
         'lat': 52.50690047078078,
         'lng': 13.323732342497513,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50690047078078,
           'lng': 13.323732342497513}],
         'distance': 326,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Carmerstraße 11 (Savignyplatz)',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d2ef8c779dd6ea8487e8dd3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520d54521e3',
        'name': 'Café Savigny',
        'location': {'address': 'Grolmanstr. 53-54',
         'lat': 52.50734344645246,
         'lng': 13.321165492025905,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50734344645246,
           'lng': 13.321165492025905}],
         'distance': 452,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grolmanstr. 53-54',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520d54521e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b110852f964a5209b7723e3',
        'name': 'Caras',
        'location': {'address': 'Hardenbergstr. 4-5',
         'crossStreet': 'Knesebeckstr.',
         'lat': 52.51099091056185,
         'lng': 13.322671651840208,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51099091056185,
           'lng': 13.322671651840208}],
         'distance': 402,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergstr. 4-5 (Knesebeckstr.)',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b110852f964a5209b7723e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4afad90ef964a520001922e3',
        'name': 'BagCo',
        'location': {'address': 'Kantstr. 154',
         'lat': 52.50552219103616,
         'lng': 13.3278123744991,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50552219103616,
           'lng': 13.3278123744991}],
         'distance': 365,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 154', '10623 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4afad90ef964a520001922e3-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c225b1da35dce002cbd3da8',
        'name': 'Starbucks',
        'location': {'address': 'Joachimsthaler Str. 3',
         'lat': 52.50583870000504,
         'lng': 13.331780433654785,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50583870000504,
           'lng': 13.331780433654785}],
         'distance': 443,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Joachimsthaler Str. 3',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c225b1da35dce002cbd3da8-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a25300509e2836fcd672422',
        'name': 'C/O Berlin Café',
        'location': {'address': 'Hardenbergstr. 22-24',
         'lat': 52.506694,
         'lng': 13.330645,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506694,
           'lng': 13.330645}],
         'distance': 321,
         'postalCode': '10623',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergstr. 22-24',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a25300509e2836fcd672422-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b1cef0ef964a5208f0a24e3',
        'name': 'Balzac Coffee',
        'location': {'address': 'Knesebeckstr. 1-2',
         'lat': 52.510736397013005,
         'lng': 13.32312989669319,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.510736397013005,
           'lng': 13.32312989669319}],
         'distance': 360,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Knesebeckstr. 1-2',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b1cef0ef964a5208f0a24e3-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '511e33abe4b030d7320f11c8',
        'name': 'Coffeebar',
        'location': {'address': 'Hardenbergstr. 34',
         'lat': 52.509924176186985,
         'lng': 13.326017181291393,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.509924176186985,
           'lng': 13.326017181291393}],
         'distance': 156,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergstr. 34',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-511e33abe4b030d7320f11c8-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57ea2ce0498e702210fb5609',
        'name': 'Mosaique Coffee & Co.',
        'location': {'lat': 52.507312,
         'lng': 13.322939,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.507312,
           'lng': 13.322939}],
         'distance': 344,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57ea2ce0498e702210fb5609-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50a789dce4b0702a820a422a',
        'name': 'Café im Museum für Fotografie',
        'location': {'address': 'Jebensstr. 2',
         'lat': 52.50783148510941,
         'lng': 13.332614296879072,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50783148510941,
           'lng': 13.332614296879072}],
         'distance': 369,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jebensstr. 2', '10623 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50a789dce4b0702a820a422a-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5677f577498edfae549774d2',
        'name': 'McCafé',
        'location': {'address': 'Hardenbergplatz',
         'lat': 52.506898289335886,
         'lng': 13.33262037715007,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506898289335886,
           'lng': 13.33262037715007}],
         'distance': 412,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergplatz', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5677f577498edfae549774d2-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b90c7d3f964a520349733e3',
        'name': 'Caffè Ritazza',
        'location': {'address': 'Hardenbergplatz 13',
         'lat': 52.506594,
         'lng': 13.332736,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506594,
           'lng': 13.332736}],
         'distance': 437,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergplatz 13',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b90c7d3f964a520349733e3-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c405922cc410f470570a961',
        'name': 'Café Zoo',
        'location': {'lat': 52.506697464882286,
         'lng': 13.333063863314939,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506697464882286,
           'lng': 13.333063863314939}],
         'distance': 449,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c405922cc410f470570a961-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5518fe24498ee5f4d40f1a44',
        'name': 'Starbucks',
        'location': {'address': 'Hardenbergplatz 9-11',
         'lat': 52.506418272214894,
         'lng': 13.332633376121521,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506418272214894,
           'lng': 13.332633376121521}],
         'distance': 442,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hardenbergplatz 9-11',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5518fe24498ee5f4d40f1a44-17'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4e164c641f7bb85935'},
  'response': {'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 9,
   'suggestedBounds': {'ne': {'lat': 52.514000004500005,
     'lng': 13.322079858665228},
    'sw': {'lat': 52.5049999955, 'lng': 13.307320141334772}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ab67298fd9d732167fae0b0',
        'name': 'Reeham Coffee',
        'location': {'address': 'Schlüterstr. 12',
         'crossStreet': 'Goethestr.',
         'lat': 52.50866787327402,
         'lng': 13.3179269464631,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50866787327402,
           'lng': 13.3179269464631}],
         'distance': 237,
         'postalCode': '10625',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schlüterstr. 12 (Goethestr.)',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ab67298fd9d732167fae0b0-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b715453f964a52060412de3',
        'name': 'Bio Fein Bio',
        'location': {'address': 'Leibnizstr.30',
         'lat': 52.51120687742219,
         'lng': 13.311980766406478,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51120687742219,
           'lng': 13.311980766406478}],
         'distance': 264,
         'postalCode': '10625',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leibnizstr.30', '10625 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b715453f964a52060412de3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56714ed9498e49f082a12256',
        'name': 'LimaLima',
        'location': {'address': 'Schlüterstr. 74',
         'crossStreet': 'Goethestr.',
         'lat': 52.50887999999999,
         'lng': 13.318160000000034,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50887999999999,
           'lng': 13.318160000000034}],
         'distance': 244,
         'postalCode': '10625',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schlüterstr. 74 (Goethestr.)',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '149196886'}},
       'referralId': 'e-0-56714ed9498e49f082a12256-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ecd7bdf507e020008329709',
        'name': 'Outgrow Coffee',
        'location': {'address': 'Kantstr. 134b',
         'lat': 52.505963594380745,
         'lng': 13.316541463136673,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.505963594380745,
           'lng': 13.316541463136673}],
         'distance': 412,
         'postalCode': '10625',
         'cc': 'DE',
         'neighborhood': 'Charlottenburg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 134b', '10625 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ecd7bdf507e020008329709-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d6bcac09c533704905132fa',
        'name': 'Cafe Lisboa',
        'location': {'address': 'Goethestr. 34',
         'crossStreet': 'Sesenheimstr.',
         'lat': 52.50892643506776,
         'lng': 13.307877839400101,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50892643506776,
           'lng': 13.307877839400101}],
         'distance': 466,
         'postalCode': '10625',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goethestr. 34 (Sesenheimstr.)',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d6bcac09c533704905132fa-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520d54521e3',
        'name': 'Café Savigny',
        'location': {'address': 'Grolmanstr. 53-54',
         'lat': 52.50734344645246,
         'lng': 13.321165492025905,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50734344645246,
           'lng': 13.321165492025905}],
         'distance': 499,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grolmanstr. 53-54',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520d54521e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d7b76847498a1cdf4516afc',
        'name': 'Leibniz Cafe',
        'location': {'address': 'Leibnizstr. 17',
         'crossStreet': 'Schillerstr.',
         'lat': 52.51140870135995,
         'lng': 13.312071018610842,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51140870135995,
           'lng': 13.312071018610842}],
         'distance': 277,
         'postalCode': '10625',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leibnizstr. 17 (Schillerstr.)',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d7b76847498a1cdf4516afc-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '504b327ae4b0168120d4a008',
        'name': 'Operncafé',
        'location': {'address': 'Bismarckstr. 28',
         'lat': 52.51194493825641,
         'lng': 13.311109038684222,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51194493825641,
           'lng': 13.311109038684222}],
         'distance': 365,
         'postalCode': '10625',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bismarckstr. 28',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-504b327ae4b0168120d4a008-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c053d3473a8c9b6ad2a97e0',
        'name': 'Pan Bistro',
        'location': {'address': 'Leibnitzstr. 101',
         'lat': 52.51292364998421,
         'lng': 13.314603567123413,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51292364998421,
           'lng': 13.314603567123413}],
         'distance': 381,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leibnitzstr. 101', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c053d3473a8c9b6ad2a97e0-8'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4f726940047d4fe264'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 23,
   'suggestedBounds': {'ne': {'lat': 52.512500004500005,
     'lng': 13.310379606801215},
    'sw': {'lat': 52.5034999955, 'lng': 13.295620393198787}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b9a8bfff964a520debf35e3',
        'name': 'Café au lait - Coffee Food & Drinks',
        'location': {'address': 'Kantstr. 110',
         'crossStreet': 'Wilmersdorfer Str.',
         'lat': 52.50674634495147,
         'lng': 13.305781169860838,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50674634495147,
           'lng': 13.305781169860838}],
         'distance': 234,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 110 (Wilmersdorfer Str.)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '521440049'}},
       'referralId': 'e-0-4b9a8bfff964a520debf35e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e52ae33b0fbfe59e9da18b7',
        'name': 'Insonne',
        'location': {'address': 'Windscheidstr. 22',
         'lat': 52.505605,
         'lng': 13.299947,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.505605,
           'lng': 13.299947}],
         'distance': 337,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Windscheidstr. 22',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e52ae33b0fbfe59e9da18b7-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b25ddb4f964a520037724e3',
        'name': 'Windback Café',
        'location': {'address': 'Windscheidstr. 19',
         'lat': 52.50552644887643,
         'lng': 13.299626310564486,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50552644887643,
           'lng': 13.299626310564486}],
         'distance': 357,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Windscheidstr. 19',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b25ddb4f964a520037724e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '598e307c9fca56393429b563',
        'name': 'Impala Coffee',
        'location': {'address': 'Wilmersdorfer Str. 67',
         'crossStreet': 'Gervinusstr.',
         'lat': 52.50479923261686,
         'lng': 13.307089044959548,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50479923261686,
           'lng': 13.307089044959548}],
         'distance': 451,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 67 (Gervinusstr.)',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-598e307c9fca56393429b563-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50853ac2e4b0e99d0d19a430',
        'name': 'Cafe Wallenstein',
        'location': {'address': 'Schillerstr. 53',
         'crossStreet': 'Kaiser-Friedrich-Str.',
         'lat': 52.50984267461058,
         'lng': 13.301111334350503,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50984267461058,
           'lng': 13.301111334350503}],
         'distance': 241,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schillerstr. 53 (Kaiser-Friedrich-Str.)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50853ac2e4b0e99d0d19a430-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '524ea7e911d27fc1d2963d01',
        'name': 'La Femme',
        'location': {'address': 'Wilmersdorfer Str. 135',
         'lat': 52.51152117044885,
         'lng': 13.305503740823424,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51152117044885,
           'lng': 13.305503740823424}],
         'distance': 427,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 135',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-524ea7e911d27fc1d2963d01-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d5589dca05c3704ca16ba87',
        'name': 'Tchibo',
        'location': {'address': 'Wilmersdorfer Str. 55',
         'lat': 52.50816082065514,
         'lng': 13.306293272115665,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50816082065514,
           'lng': 13.306293272115665}],
         'distance': 223,
         'postalCode': '10627',
         'cc': 'DE',
         'neighborhood': 'Wilmersdorf',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 55',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d5589dca05c3704ca16ba87-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d8e06f1d00a6ea8d800af4f',
        'name': 'Kredenz Café Konditorei',
        'location': {'address': 'Kantstr. 81',
         'crossStreet': 'Am Amtsgerichtsplatz',
         'lat': 52.506816687325866,
         'lng': 13.29689034459545,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506816687325866,
           'lng': 13.29689034459545}],
         'distance': 434,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 81 (Am Amtsgerichtsplatz)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d8e06f1d00a6ea8d800af4f-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d6bcac09c533704905132fa',
        'name': 'Cafe Lisboa',
        'location': {'address': 'Goethestr. 34',
         'crossStreet': 'Sesenheimstr.',
         'lat': 52.50892643506776,
         'lng': 13.307877839400101,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50892643506776,
           'lng': 13.307877839400101}],
         'distance': 346,
         'postalCode': '10625',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goethestr. 34 (Sesenheimstr.)',
          '10625 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d6bcac09c533704905132fa-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6db1b8f964a52029872ce3',
        'name': 'Café Extrablatt',
        'location': {'address': 'Wilmersdorfer Str. 46',
         'lat': 52.50940989352259,
         'lng': 13.305863670126424,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50940989352259,
           'lng': 13.305863670126424}],
         'distance': 249,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 46',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6db1b8f964a52029872ce3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5be9b29986f4cc002c7190f4',
        'name': 'Black Fox Coffee',
        'location': {'address': 'Wilmersdorfer Str. 46',
         'lat': 52.509788,
         'lng': 13.305691,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.509788,
           'lng': 13.305691}],
         'distance': 269,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 46', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5be9b29986f4cc002c7190f4-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5431361d498e9bcafb48898a',
        'name': 'DOPPIO PAZZO',
        'location': {'address': 'Leonhardstr. 2',
         'lat': 52.504812945292755,
         'lng': 13.298848188957939,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.504812945292755,
           'lng': 13.298848188957939}],
         'distance': 452,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leonhardstr. 2', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5431361d498e9bcafb48898a-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5773f6a7498e6bf43c192d9a',
        'name': 'Tanne B',
        'location': {'lat': 52.506454,
         'lng': 13.308831,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506454,
           'lng': 13.308831}],
         'distance': 430,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5773f6a7498e6bf43c192d9a-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd6ad6a6798ef3b9072658d',
        'name': 'Café September',
        'location': {'address': 'Pestalozzistr. 33',
         'lat': 52.50796138356224,
         'lng': 13.305560795439874,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50796138356224,
           'lng': 13.305560795439874}],
         'distance': 173,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pestalozzistr. 33',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd6ad6a6798ef3b9072658d-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5597b00a498ef8cc24720aae',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Wilmersdorfer str. 112',
         'crossStreet': 'Wilmersdorfer str',
         'lat': 52.50693104397645,
         'lng': 13.306704671733527,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50693104397645,
           'lng': 13.306704671733527}],
         'distance': 277,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer str. 112 (Wilmersdorfer str)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5597b00a498ef8cc24720aae-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5319cd95498eef833a56bf75',
        'name': 'TeeGschwendner',
        'location': {'address': 'Wilmersdorfer Str. 46',
         'lat': 52.509249,
         'lng': 13.304609,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.509249,
           'lng': 13.304609}],
         'distance': 176,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 46',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '587900842'}},
       'referralId': 'e-0-5319cd95498eef833a56bf75-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '540aeb38498ec61f46baac60',
        'name': 'Nan Yi Tee',
        'location': {'address': 'Westfälische Str. 66',
         'lat': 52.50751333008297,
         'lng': 13.2986129764208,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50751333008297,
           'lng': 13.2986129764208}],
         'distance': 302,
         'postalCode': '10709',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Westfälische Str. 66',
          '10709 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '142947990'}},
       'referralId': 'e-0-540aeb38498ec61f46baac60-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59f49bdfdd12f809adcd4383',
        'name': 'Granny Smith',
        'location': {'address': 'Stuttgarter Platz 2',
         'lat': 52.5058354,
         'lng': 13.3057562,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5058354,
           'lng': 13.3057562}],
         'distance': 304,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stuttgarter Platz 2',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '559662116'}},
       'referralId': 'e-0-59f49bdfdd12f809adcd4383-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cc7cb59fa03224b1aa540ef',
        'name': 'Rick’s Café Americain',
        'location': {'address': 'Schillerstr. 40',
         'lat': 52.510032087890586,
         'lng': 13.306248879344746,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.510032087890586,
           'lng': 13.306248879344746}],
         'distance': 315,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schillerstr. 40',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cc7cb59fa03224b1aa540ef-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dd800e01838b8561cf5bbe9',
        'name': 'BoboQ',
        'location': {'address': 'Wilmersdorferstr.',
         'lat': 52.50575003399555,
         'lng': 13.306624596382946,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50575003399555,
           'lng': 13.306624596382946}],
         'distance': 350,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorferstr.', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dd800e01838b8561cf5bbe9-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5220608011d21eb5f1980103',
        'name': 'Kleine Tee Ecke',
        'location': {'address': 'Bismarckstr. 58',
         'crossStreet': 'Kaiser-Friedrich-Str.',
         'lat': 52.511301,
         'lng': 13.301245,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.511301,
           'lng': 13.301245}],
         'distance': 386,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bismarckstr. 58 (Kaiser-Friedrich-Str.)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5220608011d21eb5f1980103-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b02aecbbfc6d0002c0a18f2',
        'name': 'Haus 77 Café',
        'location': {'address': 'Kaiser-Friedrich Str. 77',
         'lat': 52.51159734935449,
         'lng': 13.30174371600151,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51159734935449,
           'lng': 13.30174371600151}],
         'distance': 409,
         'postalCode': '10585',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kaiser-Friedrich Str. 77',
          '10585 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '495103081'}},
       'referralId': 'e-0-5b02aecbbfc6d0002c0a18f2-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d945ca7078ef04dc81e2878',
        'name': 'La Strada',
        'location': {'address': 'Bismarckstr. 69',
         'lat': 52.510821138848726,
         'lng': 13.298515677452087,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.510821138848726,
           'lng': 13.298515677452087}],
         'distance': 436,
         'postalCode': '10627',
         'cc': 'DE',
         'neighborhood': 'Sophie-Charlotte-Platz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bismarckstr. 69',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d945ca7078ef04dc81e2878-22'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f4f4360832ce8b3abc3'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 15,
   'suggestedBounds': {'ne': {'lat': 52.5073000045, 'lng': 13.31597873384487},
    'sw': {'lat': 52.4982999955, 'lng': 13.30122126615513}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6d7863f964a52095762ce3',
        'name': 'Frau Behrens Torten',
        'location': {'address': 'Wilmersdorfer Str. 96-97',
         'crossStreet': 'Sybelstr.',
         'lat': 52.5016526514001,
         'lng': 13.30766311815256,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5016526514001,
           'lng': 13.30766311815256}],
         'distance': 142,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 96-97 (Sybelstr.)',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6d7863f964a52095762ce3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '598e307c9fca56393429b563',
        'name': 'Impala Coffee',
        'location': {'address': 'Wilmersdorfer Str. 67',
         'crossStreet': 'Gervinusstr.',
         'lat': 52.50479923261686,
         'lng': 13.307089044959548,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50479923261686,
           'lng': 13.307089044959548}],
         'distance': 244,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer Str. 67 (Gervinusstr.)',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-598e307c9fca56393429b563-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e05cf7cfa767637fd2028fd',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Kurfürstendamm 72',
         'crossStreet': 'Waitzstr.',
         'lat': 52.500055620176035,
         'lng': 13.306058049201965,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500055620176035,
           'lng': 13.306058049201965}],
         'distance': 350,
         'postalCode': '10709',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 72 (Waitzstr.)',
          '10709 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e05cf7cfa767637fd2028fd-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b9a8bfff964a520debf35e3',
        'name': 'Café au lait - Coffee Food & Drinks',
        'location': {'address': 'Kantstr. 110',
         'crossStreet': 'Wilmersdorfer Str.',
         'lat': 52.50674634495147,
         'lng': 13.305781169860838,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50674634495147,
           'lng': 13.305781169860838}],
         'distance': 479,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kantstr. 110 (Wilmersdorfer Str.)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '521440049'}},
       'referralId': 'e-0-4b9a8bfff964a520debf35e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b61c1fff964a520e1202ae3',
        'name': 'Starbucks',
        'location': {'address': 'Kurfürstendamm 61',
         'lat': 52.50080082395324,
         'lng': 13.31296553979055,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50080082395324,
           'lng': 13.31296553979055}],
         'distance': 370,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 61',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b61c1fff964a520e1202ae3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5773f6a7498e6bf43c192d9a',
        'name': 'Tanne B',
        'location': {'lat': 52.506454,
         'lng': 13.308831,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.506454,
           'lng': 13.308831}],
         'distance': 407,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5773f6a7498e6bf43c192d9a-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51bc675d498e44f450175b79',
        'name': 'Café Maître Münch',
        'location': {'address': 'Giesebrechtstr. 16',
         'lat': 52.502282,
         'lng': 13.309506,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.502282,
           'lng': 13.309506}],
         'distance': 84,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Giesebrechtstr. 16',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51bc675d498e44f450175b79-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5cb21a65ea1e44002bb95c5c',
        'name': 'Mado',
        'location': {'address': 'Kurfürstendamm 175',
         'lat': 52.500023,
         'lng': 13.310055,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500023,
           'lng': 13.310055}],
         'distance': 324,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 175', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5cb21a65ea1e44002bb95c5c-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5597b00a498ef8cc24720aae',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Wilmersdorfer str. 112',
         'crossStreet': 'Wilmersdorfer str',
         'lat': 52.50693104397645,
         'lng': 13.306704671733527,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50693104397645,
           'lng': 13.306704671733527}],
         'distance': 477,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorfer str. 112 (Wilmersdorfer str)',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5597b00a498ef8cc24720aae-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e75fade7d8b9176034b0a5a',
        'name': 'Croissanterie',
        'location': {'address': 'Giesebrechtstr. 22',
         'crossStreet': 'Wilmersdorfer Str.',
         'lat': 52.503265633642165,
         'lng': 13.308391571044922,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503265633642165,
           'lng': 13.308391571044922}],
         'distance': 53,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Giesebrechtstr. 22 (Wilmersdorfer Str.)',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e75fade7d8b9176034b0a5a-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ead82ed8b8181aef81f368b',
        'name': 'Confiserie Reichert',
        'location': {'address': 'Giesebrechtstraße 22, 10629 Berlin',
         'lat': 52.50284493957226,
         'lng': 13.308095686956444,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50284493957226,
           'lng': 13.308095686956444}],
         'distance': 34,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Giesebrechtstraße 22, 10629 Berlin',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ead82ed8b8181aef81f368b-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51292cb8e4b096ae492eacf7',
        'name': 'Shahrazar Cafe',
        'location': {'lat': 52.50211054365673,
         'lng': 13.304198562533157,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50211054365673,
           'lng': 13.304198562533157}],
         'distance': 307,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51292cb8e4b096ae492eacf7-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dd800e01838b8561cf5bbe9',
        'name': 'BoboQ',
        'location': {'address': 'Wilmersdorferstr.',
         'lat': 52.50575003399555,
         'lng': 13.306624596382946,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50575003399555,
           'lng': 13.306624596382946}],
         'distance': 354,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilmersdorferstr.', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dd800e01838b8561cf5bbe9-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5aad58ab78782c0c8ad731f6',
        'name': 'Kant café',
        'location': {'address': 'Walter-Benjamin-Platz 8',
         'lat': 52.50161,
         'lng': 13.31364,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50161,
           'lng': 13.31364}],
         'distance': 366,
         'postalCode': '10629',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Walter-Benjamin-Platz 8',
          '10629 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5aad58ab78782c0c8ad731f6-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59f49bdfdd12f809adcd4383',
        'name': 'Granny Smith',
        'location': {'address': 'Stuttgarter Platz 2',
         'lat': 52.5058354,
         'lng': 13.3057562,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5058354,
           'lng': 13.3057562}],
         'distance': 388,
         'postalCode': '10627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stuttgarter Platz 2',
          '10627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '559662116'}},
       'referralId': 'e-0-59f49bdfdd12f809adcd4383-14'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f500cc1d6096fcdea60'},
  'response': {'headerLocation': 'Hohenzollernplatz',
   'headerFullLocation': 'Hohenzollernplatz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.5012000045, 'lng': 13.321177710140578},
    'sw': {'lat': 52.492199995499995, 'lng': 13.306422289859423}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b61c1fff964a520e1202ae3',
        'name': 'Starbucks',
        'location': {'address': 'Kurfürstendamm 61',
         'lat': 52.50080082395324,
         'lng': 13.31296553979055,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50080082395324,
           'lng': 13.31296553979055}],
         'distance': 459,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 61',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b61c1fff964a520e1202ae3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5cb21a65ea1e44002bb95c5c',
        'name': 'Mado',
        'location': {'address': 'Kurfürstendamm 175',
         'lat': 52.500023,
         'lng': 13.310055,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500023,
           'lng': 13.310055}],
         'distance': 448,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 175', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5cb21a65ea1e44002bb95c5c-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd9c7a9e914a593cbdf57fa',
        'name': 'Cafe Solo',
        'location': {'lat': 52.498118,
         'lng': 13.318405,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498118,
           'lng': 13.318405}],
         'distance': 349,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd9c7a9e914a593cbdf57fa-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c432ed5ff711b8df88a1405',
        'name': 'Checkers',
        'location': {'address': 'Olivaer Platz 15',
         'lat': 52.49983698016564,
         'lng': 13.314357404240928,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49983698016564,
           'lng': 13.314357404240928}],
         'distance': 351,
         'postalCode': '10707',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Olivaer Platz 15',
          '10707 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c432ed5ff711b8df88a1405-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fdafb73e4b015c11dabcd68',
        'name': 'Chocolatte&latte',
        'location': {'lat': 52.497140901680126,
         'lng': 13.307588244233079,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497140901680126,
           'lng': 13.307588244233079}],
         'distance': 423,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fdafb73e4b015c11dabcd68-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f504467db32a3b4b825'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Halensee',
   'headerFullLocation': 'Halensee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.4984000045, 'lng': 13.310477240366636},
    'sw': {'lat': 52.489399995499994, 'lng': 13.295722759633366}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d36d13b38f23704abcf28b0',
        'name': 'Caffee Credo',
        'location': {'address': 'Westfälische Straße 27',
         'lat': 52.495578,
         'lng': 13.29837,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.495578,
           'lng': 13.29837}],
         'distance': 371,
         'postalCode': '10709',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Westfälische Straße 27',
          '10709 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d36d13b38f23704abcf28b0-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d39c1f781258cfa9da69e5f',
        'name': 'Café MetroPolen',
        'location': {'address': 'Westfälische Str. 32',
         'lat': 52.49580680858954,
         'lng': 13.297238945960999,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49580680858954,
           'lng': 13.297238945960999}],
         'distance': 450,
         'postalCode': '10709',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Westfälische Str. 32',
          '10709 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d39c1f781258cfa9da69e5f-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fdafb73e4b015c11dabcd68',
        'name': 'Chocolatte&latte',
        'location': {'lat': 52.497140901680126,
         'lng': 13.307588244233079,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497140901680126,
           'lng': 13.307588244233079}],
         'distance': 471,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fdafb73e4b015c11dabcd68-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f504769b85071ac0b82'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Joachim-Friedrich-Straße',
   'headerFullLocation': 'Joachim-Friedrich-Straße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5026000045, 'lng': 13.297877945056594},
    'sw': {'lat': 52.4935999955, 'lng': 13.283122054943405}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51c18a22498e901b58eaa6ae',
        'name': 'Cups',
        'location': {'address': 'Kurfürstendamm 114',
         'lat': 52.4973884452663,
         'lng': 13.291307350385743,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4973884452663,
           'lng': 13.291307350385743}],
         'distance': 96,
         'postalCode': '10711',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 114',
          '10711 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51c18a22498e901b58eaa6ae-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f51d9a71631446b4b62'},
  'response': {'headerLocation': 'Bundesplatz',
   'headerFullLocation': 'Bundesplatz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.489600004500005,
     'lng': 13.320675764438297},
    'sw': {'lat': 52.4805999955, 'lng': 13.305924235561703}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56277454498e442297941ffb',
        'name': 'CoCo - Coffee & Coaching',
        'location': {'address': 'Berliner Str. 54',
         'lat': 52.486539,
         'lng': 13.316242,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486539,
           'lng': 13.316242}],
         'distance': 255,
         'postalCode': '10713',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berliner Str. 54',
          '10713 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56277454498e442297941ffb-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59500e981bc70421e1b57e66',
        'name': 'Cocorico Cafe Bistro',
        'location': {'address': 'Brandenburgische Str. 73',
         'lat': 52.48792860200966,
         'lng': 13.317736387252806,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48792860200966,
           'lng': 13.317736387252806}],
         'distance': 435,
         'postalCode': '10713',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brandenburgische Str. 73',
          '10713 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59500e981bc70421e1b57e66-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e3cfb6045dd68e327333e3d',
        'name': 'Emi Backshop',
        'location': {'address': 'Berliner Str. 42 a',
         'lat': 52.48662523029982,
         'lng': 13.319329619407654,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48662523029982,
           'lng': 13.319329619407654}],
         'distance': 442,
         'postalCode': '10713',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berliner Str. 42 a',
          '10713 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e3cfb6045dd68e327333e3d-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '539ec8d3498e78925a461421',
        'name': 'Paretzer Lotto-Café',
        'location': {'address': 'Paretzer Str. 5',
         'lat': 52.48163351480594,
         'lng': 13.317720293998718,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48163351480594,
           'lng': 13.317720293998718}],
         'distance': 488,
         'postalCode': '10713',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paretzer Str. 5',
          '10713 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-539ec8d3498e78925a461421-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f51ebf7ed052685f7eb'},
  'response': {'headerLocation': 'Bundesplatz',
   'headerFullLocation': 'Bundesplatz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.4869000045, 'lng': 13.336275311749912},
    'sw': {'lat': 52.477899995499996, 'lng': 13.32152468825009}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58778cd87b43b469071b897f',
        'name': 'Café Wolkenstein',
        'location': {'address': 'Bundesplatz 1',
         'crossStreet': 'Mainzer Straße',
         'lat': 52.480149,
         'lng': 13.327856,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.480149,
           'lng': 13.327856}],
         'distance': 260,
         'postalCode': '10715',
         'cc': 'DE',
         'neighborhood': 'Bundesplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bundesplatz 1 (Mainzer Straße)',
          '10715 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58778cd87b43b469071b897f-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fd72d35e4b0ac0b1e89e0ec',
        'name': 'Café am Volkspark',
        'location': {'address': 'Livländische Straße 2',
         'crossStreet': 'Am Volkspark',
         'lat': 52.482662612451534,
         'lng': 13.325965404510498,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.482662612451534,
           'lng': 13.325965404510498}],
         'distance': 201,
         'postalCode': '10715',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Livländische Straße 2 (Am Volkspark)',
          '10715 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fd72d35e4b0ac0b1e89e0ec-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56c039eecd10d8d45dcbd6b8',
        'name': 'Coffee & More',
        'location': {'address': 'Bundesplatz 9',
         'lat': 52.479430491787724,
         'lng': 13.326768066091592,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.479430491787724,
           'lng': 13.326768066091592}],
         'distance': 360,
         'postalCode': '10715',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bundesplatz 9', '10715 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56c039eecd10d8d45dcbd6b8-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5058600be4b07b064bd294af',
        'name': 'Zona Bar',
        'location': {'address': 'Bundesallee 45',
         'lat': 52.48609161376953,
         'lng': 13.33072280883789,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48609161376953,
           'lng': 13.33072280883789}],
         'distance': 429,
         'postalCode': '10715',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bundesallee 45',
          '10715 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5058600be4b07b064bd294af-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5188be05604b7b8211'},
  'response': {'headerLocation': 'Hohenzollernplatz',
   'headerFullLocation': 'Hohenzollernplatz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 7,
   'suggestedBounds': {'ne': {'lat': 52.4953000045, 'lng': 13.334876720350096},
    'sw': {'lat': 52.4862999955, 'lng': 13.320123279649906}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5226ef4211d2409098d50feb',
        'name': 'Happiness-Heart CAFE',
        'location': {'address': 'Güntzelstr. 22',
         'crossStreet': 'Holsteinische Str.',
         'lat': 52.49130580181417,
         'lng': 13.324930078719861,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49130580181417,
           'lng': 13.324930078719861}],
         'distance': 183,
         'postalCode': '10717',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Güntzelstr. 22 (Holsteinische Str.)',
          '10717 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5226ef4211d2409098d50feb-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e95a7d5e5fa7b6a9f2e635c',
        'name': 'Cafè Engelchen',
        'location': {'address': 'Prager Platz 1-3',
         'lat': 52.49342523963437,
         'lng': 13.333295894872716,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49342523963437,
           'lng': 13.333295894872716}],
         'distance': 489,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 1-3',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e95a7d5e5fa7b6a9f2e635c-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cebdf398ef78cfa5936af9b',
        'name': 'Zimt & Zucker Wohncafé',
        'location': {'address': 'Trautenaustr. 12',
         'lat': 52.49167528232415,
         'lng': 13.326703504486604,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49167528232415,
           'lng': 13.326703504486604}],
         'distance': 111,
         'postalCode': '10717',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Trautenaustr. 12',
          '10717 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cebdf398ef78cfa5936af9b-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c4992136594be9ac9ef3f25',
        'name': 'Meyerbeer Coffee',
        'location': {'address': 'Prager Platz 3',
         'lat': 52.4932233557136,
         'lng': 13.332913278714306,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4932233557136,
           'lng': 13.332913278714306}],
         'distance': 455,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 3',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c4992136594be9ac9ef3f25-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5f0877f68d2f57429b77f3d9',
        'name': 'Kalyan Royal',
        'location': {'address': 'Bundesallee 187',
         'lat': 52.48924239999999,
         'lng': 13.3314024,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48924239999999,
           'lng': 13.3314024}],
         'distance': 316,
         'postalCode': '10717',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bundesallee 187',
          '10717 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '584108107'}},
       'referralId': 'e-0-5f0877f68d2f57429b77f3d9-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c9da944ca44236abe392399',
        'name': 'BagCo',
        'location': {'address': 'Prager Platz 6',
         'lat': 52.49310927745698,
         'lng': 13.333305459002371,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49310927745698,
           'lng': 13.333305459002371}],
         'distance': 470,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 6',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c9da944ca44236abe392399-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56756022498ef5898e7e9a06',
        'name': 'Cafe Bernstein',
        'location': {'lat': 52.494966,
         'lng': 13.326838,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494966,
           'lng': 13.326838}],
         'distance': 465,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56756022498ef5898e7e9a06-6'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f526e16037dc723eb74'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Wilmersdorf',
   'headerFullLocation': 'Wilmersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 14,
   'suggestedBounds': {'ne': {'lat': 52.503300004500005,
     'lng': 13.333078062521864},
    'sw': {'lat': 52.4942999955, 'lng': 13.318321937478135}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc9b8040687ef3bf052dacc',
        'name': 'Berliner Kaffeerösterei',
        'location': {'address': 'Uhlandstr. 173',
         'lat': 52.5014929063876,
         'lng': 13.325070026890394,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5014929063876,
           'lng': 13.325070026890394}],
         'distance': 302,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Uhlandstr. 173',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '83899149'}},
       'referralId': 'e-0-4bc9b8040687ef3bf052dacc-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda78f964a5205c4621e3',
        'name': 'Café Restaurant "Wintergarten"',
        'location': {'address': 'Fasanenstr. 23',
         'lat': 52.502011360604314,
         'lng': 13.327076329626266,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.502011360604314,
           'lng': 13.327076329626266}],
         'distance': 369,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fasanenstr. 23',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda78f964a5205c4621e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '593bf365e185f37c5a8cb73d',
        'name': 'LaMa',
        'location': {'address': 'Hohenzollerndamm 7',
         'lat': 52.495335,
         'lng': 13.328488,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.495335,
           'lng': 13.328488}],
         'distance': 429,
         'postalCode': '10717',
         'cc': 'DE',
         'neighborhood': 'Wilmersdorf',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hohenzollerndamm 7',
          '10717 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-593bf365e185f37c5a8cb73d-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '575ac589498e736f4a65807f',
        'name': 'Blueberry Coffees',
        'location': {'address': 'Uhlandstrasse 167',
         'lat': 52.50057359277325,
         'lng': 13.324996259916714,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50057359277325,
           'lng': 13.324996259916714}],
         'distance': 203,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Uhlandstrasse 167',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-575ac589498e736f4a65807f-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fcb3ec9e4b0b0ef06e5e49a',
        'name': 'Caras',
        'location': {'address': 'Kurfürstendamm 36',
         'lat': 52.50239049553045,
         'lng': 13.32340121269226,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50239049553045,
           'lng': 13.32340121269226}],
         'distance': 428,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 36',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fcb3ec9e4b0b0ef06e5e49a-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '593547cf4b78c519c0bc049b',
        'name': 'Cafe Lebensart',
        'location': {'address': 'Uhlandstrasse 47',
         'lat': 52.497742,
         'lng': 13.324108,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497742,
           'lng': 13.324108}],
         'distance': 159,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Uhlandstrasse 47',
          '10777 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-593547cf4b78c519c0bc049b-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b22840ef964a520244824e3',
        'name': 'Weyers',
        'location': {'address': 'Pariser Str. 16',
         'lat': 52.49747787191282,
         'lng': 13.322697758946683,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49747787191282,
           'lng': 13.322697758946683}],
         'distance': 251,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pariser Str. 16',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b22840ef964a520244824e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6299f869a1c9b6b6f338a4',
        'name': 'Ottenthal Weinhandlung & Kaffeehaus',
        'location': {'address': 'Ludwigkirchstr. 9',
         'lat': 52.497871,
         'lng': 13.322834,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497871,
           'lng': 13.322834}],
         'distance': 220,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ludwigkirchstr. 9',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6299f869a1c9b6b6f338a4-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f76b126e4b0c7b6e12e80e3',
        'name': 'Café Miro',
        'location': {'lat': 52.50016610114841,
         'lng': 13.3250062097778,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50016610114841,
           'lng': 13.3250062097778}],
         'distance': 159,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f76b126e4b0c7b6e12e80e3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6e2606a437224b40402fb1',
        'name': 'Magnifique',
        'location': {'address': 'Damaschkestr. 36',
         'lat': 52.49781744925386,
         'lng': 13.32341961689073,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49781744925386,
           'lng': 13.32341961689073}],
         'distance': 189,
         'postalCode': '10711',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Damaschkestr. 36',
          '10711 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6e2606a437224b40402fb1-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56756022498ef5898e7e9a06',
        'name': 'Cafe Bernstein',
        'location': {'lat': 52.494966,
         'lng': 13.326838,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494966,
           'lng': 13.326838}],
         'distance': 433,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56756022498ef5898e7e9a06-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58838e8ce9dad12feb286e46',
        'name': 'Nier',
        'location': {'address': 'Grolmanstraße 39',
         'crossStreet': 'Kurfürstendamm',
         'lat': 52.503135017119625,
         'lng': 13.324946165084839,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503135017119625,
           'lng': 13.324946165084839}],
         'distance': 485,
         'postalCode': '10623',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grolmanstraße 39 (Kurfürstendamm)',
          '10623 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '396248036'}},
       'referralId': 'e-0-58838e8ce9dad12feb286e46-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd9c7a9e914a593cbdf57fa',
        'name': 'Cafe Solo',
        'location': {'lat': 52.498118,
         'lng': 13.318405,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498118,
           'lng': 13.318405}],
         'distance': 500,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd9c7a9e914a593cbdf57fa-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '503b2827e4b0ee7fafabd730',
        'name': 'Carisma Bakery',
        'location': {'address': 'Knesebeckstr. 64',
         'lat': 52.50138537073018,
         'lng': 13.330944527084837,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50138537073018,
           'lng': 13.330944527084837}],
         'distance': 457,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Knesebeckstr. 64',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-503b2827e4b0ee7fafabd730-13'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f523a1e82333e94d41a'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 14,
   'suggestedBounds': {'ne': {'lat': 52.502000004500005,
     'lng': 13.350077844375932},
    'sw': {'lat': 52.4929999955, 'lng': 13.33532215562407}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '588cc52851666a083e4cb174',
        'name': 'Café Komine',
        'location': {'address': 'Welserstr. 13-15',
         'crossStreet': 'Geisbeegerstr.',
         'lat': 52.497845,
         'lng': 13.341739,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497845,
           'lng': 13.341739}],
         'distance': 75,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Welserstr. 13-15 (Geisbeegerstr.)',
          '10777 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-588cc52851666a083e4cb174-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '517b9648e4b0a7bf5beceb71',
        'name': 'Café Kalwil',
        'location': {'address': 'Motzstr. 30',
         'lat': 52.49768525570815,
         'lng': 13.347861483690487,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49768525570815,
           'lng': 13.347861483690487}],
         'distance': 350,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Motzstr. 30', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-517b9648e4b0a7bf5beceb71-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4db2df6d93a017099db60fdb',
        'name': 'Romeo und Romeo',
        'location': {'address': 'Motzstr. 20',
         'lat': 52.498299277987925,
         'lng': 13.34950196589679,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498299277987925,
           'lng': 13.34950196589679}],
         'distance': 469,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Motzstr. 20', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4db2df6d93a017099db60fdb-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c8a2b23e51e6dcb584966de',
        'name': 'Nespresso Boutique',
        'location': {'address': 'Tauentzienstr. 21-24',
         'lat': 52.501626360833576,
         'lng': 13.340258070826277,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501626360833576,
           'lng': 13.340258070826277}],
         'distance': 488,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 21-24',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c8a2b23e51e6dcb584966de-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '544634b0498e1428320a401b',
        'name': 'Caféhaus Grenander',
        'location': {'address': 'Wittenbergplatz 3a',
         'crossStreet': 'Bayreuther Str.',
         'lat': 52.50088835218635,
         'lng': 13.343110084533691,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50088835218635,
           'lng': 13.343110084533691}],
         'distance': 378,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wittenbergplatz 3a (Bayreuther Str.)',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-544634b0498e1428320a401b-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5dfbb6b52f4b3400086a0c34',
        'name': 'Five Elephant Kadewe',
        'location': {'address': 'Kadewe',
         'lat': 52.501544,
         'lng': 13.341231,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501544,
           'lng': 13.341231}],
         'distance': 461,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kadewe', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5dfbb6b52f4b3400086a0c34-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '536df58e498ebd8c93958712',
        'name': 'La Piadina',
        'location': {'address': 'Augsburger Str. 6',
         'lat': 52.50053799625231,
         'lng': 13.33779800760201,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50053799625231,
           'lng': 13.33779800760201}],
         'distance': 474,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Augsburger Str. 6',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-536df58e498ebd8c93958712-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f50c6d9e4b062d9da38e7b8',
        'name': 'Cafe Sawanna',
        'location': {'address': 'Welserstr. 25',
         'lat': 52.49881782682959,
         'lng': 13.342051478342471,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49881782682959,
           'lng': 13.342051478342471}],
         'distance': 153,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Welserstr. 25', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f50c6d9e4b062d9da38e7b8-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51389a65e4b077bc6418098f',
        'name': 'Café Sinn & Sinnlichkeit',
        'location': {'address': 'Augsburger Straße 2',
         'lat': 52.50015276272254,
         'lng': 13.33860249401298,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50015276272254,
           'lng': 13.33860249401298}],
         'distance': 405,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Augsburger Straße 2',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '68522661'}},
       'referralId': 'e-0-51389a65e4b077bc6418098f-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e3c3241d22d102e853089a0',
        'name': 'Cafe Beauty',
        'location': {'address': 'Hohenstaufenstr. 33',
         'lat': 52.494249,
         'lng': 13.341121,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494249,
           'lng': 13.341121}],
         'distance': 377,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hohenstaufenstr. 33',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e3c3241d22d102e853089a0-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52a1581411d2b6eccdf2bd51',
        'name': 'Coffee Bike Store',
        'location': {'address': 'Bamberger Strasse 55',
         'crossStreet': 'Regensburger Strasse',
         'lat': 52.49614483438245,
         'lng': 13.33742380142212,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49614483438245,
           'lng': 13.33742380142212}],
         'distance': 388,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bamberger Strasse 55 (Regensburger Strasse)',
          '10777 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52a1581411d2b6eccdf2bd51-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '502bb059e4b0b81736ec62e3',
        'name': 'Backshop La Posha',
        'location': {'address': 'Bayreuther Str. 36',
         'lat': 52.5010575379193,
         'lng': 13.34326919573817,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5010575379193,
           'lng': 13.34326919573817}],
         'distance': 397,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bayreuther Str. 36',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-502bb059e4b0b81736ec62e3-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c7e24c510916dcb1b5e2b96',
        'name': 'Galleria illy',
        'location': {'address': 'Tauentzienstr. 21-24',
         'lat': 52.50171127185375,
         'lng': 13.341071605682373,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50171127185375,
           'lng': 13.341071605682373}],
         'distance': 481,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 21-24',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c7e24c510916dcb1b5e2b96-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5677f0bc498e5bd078ab4ae7',
        'name': 'Lavazza',
        'location': {'address': 'Tauentzienstr. 21-24',
         'lat': 52.501894223542884,
         'lng': 13.341600586911722,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501894223542884,
           'lng': 13.341600586911722}],
         'distance': 494,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 21-24',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5677f0bc498e5bd078ab4ae7-13'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f524769b85071ac147a'},
  'response': {'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 6,
   'suggestedBounds': {'ne': {'lat': 52.4966000045, 'lng': 13.346876938409991},
    'sw': {'lat': 52.4875999955, 'lng': 13.332123061590007}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e95a7d5e5fa7b6a9f2e635c',
        'name': 'Cafè Engelchen',
        'location': {'address': 'Prager Platz 1-3',
         'lat': 52.49342523963437,
         'lng': 13.333295894872716,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49342523963437,
           'lng': 13.333295894872716}],
         'distance': 445,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 1-3',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e95a7d5e5fa7b6a9f2e635c-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c4992136594be9ac9ef3f25',
        'name': 'Meyerbeer Coffee',
        'location': {'address': 'Prager Platz 3',
         'lat': 52.4932233557136,
         'lng': 13.332913278714306,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4932233557136,
           'lng': 13.332913278714306}],
         'distance': 463,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 3',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c4992136594be9ac9ef3f25-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e3c3241d22d102e853089a0',
        'name': 'Cafe Beauty',
        'location': {'address': 'Hohenstaufenstr. 33',
         'lat': 52.494249,
         'lng': 13.341121,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494249,
           'lng': 13.341121}],
         'distance': 263,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hohenstaufenstr. 33',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e3c3241d22d102e853089a0-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c9da944ca44236abe392399',
        'name': 'BagCo',
        'location': {'address': 'Prager Platz 6',
         'lat': 52.49310927745698,
         'lng': 13.333305459002371,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49310927745698,
           'lng': 13.333305459002371}],
         'distance': 434,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Prager Platz 6',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c9da944ca44236abe392399-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56c04631cd100eb96adbcbb5',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Bayerischer Platz 8',
         'lat': 52.4883826497499,
         'lng': 13.34015965461731,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4883826497499,
           'lng': 13.34015965461731}],
         'distance': 416,
         'postalCode': '10779',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bayerischer Platz 8',
          '10779 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56c04631cd100eb96adbcbb5-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52a1581411d2b6eccdf2bd51',
        'name': 'Coffee Bike Store',
        'location': {'address': 'Bamberger Strasse 55',
         'crossStreet': 'Regensburger Strasse',
         'lat': 52.49614483438245,
         'lng': 13.33742380142212,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49614483438245,
           'lng': 13.33742380142212}],
         'distance': 471,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bamberger Strasse 55 (Regensburger Strasse)',
          '10777 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52a1581411d2b6eccdf2bd51-5'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5383e39e1eddb0b809'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 20,
   'suggestedBounds': {'ne': {'lat': 52.4981000045, 'lng': 13.360277190038305},
    'sw': {'lat': 52.4890999955, 'lng': 13.345522809961695}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '585a65bd0b7e934bd2588e27',
        'name': 'Le Bretagne',
        'location': {'address': 'Karl-Schrader-Str. 1',
         'lat': 52.49195687156021,
         'lng': 13.351252581972107,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49195687156021,
           'lng': 13.351252581972107}],
         'distance': 214,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Schrader-Str. 1',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-585a65bd0b7e934bd2588e27-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50ceda77e4b00957d84ec7f6',
        'name': 'Mattea',
        'location': {'lat': 52.493433878360776,
         'lng': 13.35195400313665,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493433878360776,
           'lng': 13.35195400313665}],
         'distance': 66,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50ceda77e4b00957d84ec7f6-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c230c92502b9521be1e6e21',
        'name': 'Baltas Coffee Shop',
        'location': {'address': 'Goltzstr. 17',
         'lat': 52.493455880441246,
         'lng': 13.353658037022804,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493455880441246,
           'lng': 13.353658037022804}],
         'distance': 53,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 17', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c230c92502b9521be1e6e21-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59072f4aa2a6ce23bba9dea7',
        'name': 'The Visit',
        'location': {'address': 'Goltzstr. 39',
         'lat': 52.492878765499334,
         'lng': 13.353553659131794,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.492878765499334,
           'lng': 13.353553659131794}],
         'distance': 91,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 39', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '448592562'}},
       'referralId': 'e-0-59072f4aa2a6ce23bba9dea7-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520d64521e3',
        'name': 'Tee Tea Thé',
        'location': {'address': 'Goltzstr. 2',
         'lat': 52.490227288565116,
         'lng': 13.353177985495995,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490227288565116,
           'lng': 13.353177985495995}],
         'distance': 375,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 2', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520d64521e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b8d7710f964a52049fd32e3',
        'name': 'Rote Beete',
        'location': {'address': 'Gleditschstr. 71',
         'lat': 52.490436580690485,
         'lng': 13.354926819716542,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490436580690485,
           'lng': 13.354926819716542}],
         'distance': 377,
         'postalCode': '10781',
         'cc': 'DE',
         'neighborhood': 'Akazien',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleditschstr. 71',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b8d7710f964a52049fd32e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50b0c0a3e4b00d939678d8f3',
        'name': 'Mi Onda',
        'location': {'address': 'Goltzstr. 34',
         'lat': 52.49401524250889,
         'lng': 13.353862537640195,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49401524250889,
           'lng': 13.353862537640195}],
         'distance': 79,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 34', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50b0c0a3e4b00d939678d8f3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59073961cad1b6166cb4dd30',
        'name': 'Kiez Eis',
        'location': {'address': 'Winterfeldtstr. 46',
         'lat': 52.496941782707246,
         'lng': 13.353624026622834,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496941782707246,
           'lng': 13.353624026622834}],
         'distance': 375,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winterfeldtstr. 46',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59073961cad1b6166cb4dd30-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d6a4be8de28224b54074ebe',
        'name': 'Maxway Coffee',
        'location': {'address': 'Maaßenstr. 13',
         'lat': 52.49745659911064,
         'lng': 13.354411170186017,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49745659911064,
           'lng': 13.354411170186017}],
         'distance': 441,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maaßenstr. 13', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d6a4be8de28224b54074ebe-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a520024621e3',
        'name': 'Gottlob',
        'location': {'address': 'Akazienstr. 17',
         'lat': 52.489293253107576,
         'lng': 13.353526673712864,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.489293253107576,
           'lng': 13.353526673712864}],
         'distance': 481,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 17',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a520024621e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ca1f82b542b224b84ca12a0',
        'name': 'Emma & Paul',
        'location': {'address': 'Gleditschstr. 47',
         'lat': 52.49244332970314,
         'lng': 13.355542042488707,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49244332970314,
           'lng': 13.355542042488707}],
         'distance': 220,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleditschstr. 47',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ca1f82b542b224b84ca12a0-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520d74521e3',
        'name': 'Café Berio',
        'location': {'address': 'Maaßenstr. 7',
         'lat': 52.4979623176797,
         'lng': 13.354301917346982,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4979623176797,
           'lng': 13.354301917346982}],
         'distance': 494,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maaßenstr. 7', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520d74521e3-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52a6fc7311d28f4dc542efb8',
        'name': 'hub:raum Café',
        'location': {'address': 'Winterfeldtstr. 21',
         'lat': 52.49626151548128,
         'lng': 13.358191173441384,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49626151548128,
           'lng': 13.358191173441384}],
         'distance': 465,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winterfeldtstr. 21', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52a6fc7311d28f4dc542efb8-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a520864521e3',
        'name': 'Café M',
        'location': {'address': 'Goltzstr. 33',
         'lat': 52.494173228755756,
         'lng': 13.353852357022236,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494173228755756,
           'lng': 13.353852357022236}],
         'distance': 90,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 33', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a520864521e3-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c0a278e340720a1bbf38593',
        'name': 'Phoenix Lounge',
        'location': {'address': 'Kyffhäuserstr. 14',
         'crossStreet': 'Barbarossastraße',
         'lat': 52.49224332256961,
         'lng': 13.351337803024036,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49224332256961,
           'lng': 13.351337803024036}],
         'distance': 184,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kyffhäuserstr. 14 (Barbarossastraße)',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c0a278e340720a1bbf38593-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e4e2657d22daf51d2633076',
        'name': 'Kiezoase Schöneberg',
        'location': {'address': 'Barbarossastr. 65',
         'lat': 52.492031194150705,
         'lng': 13.352766036987305,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.492031194150705,
           'lng': 13.352766036987305}],
         'distance': 174,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Barbarossastr. 65',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e4e2657d22daf51d2633076-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '587920868cb34e044de4f06d',
        'name': 'Angelo Mastroianni',
        'location': {'address': 'Hohenstaufenstraße 8',
         'lat': 52.49488613,
         'lng': 13.35094245,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49488613,
           'lng': 13.35094245}],
         'distance': 195,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hohenstaufenstraße 8',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-587920868cb34e044de4f06d-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50546c5fe4b02f6114212ad4',
        'name': 'Cafe Racer 69',
        'location': {'address': 'Hohenstaufenstr. 69',
         'lat': 52.49488743029464,
         'lng': 13.35324605023986,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49488743029464,
           'lng': 13.35324605023986}],
         'distance': 145,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hohenstaufenstr. 69',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50546c5fe4b02f6114212ad4-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50b0a9b3e4b042e7812688ab',
        'name': 'Roberto @ Winterfeldtmarkt',
        'location': {'address': 'Winterfeldtplatz',
         'lat': 52.496659,
         'lng': 13.354233,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496659,
           'lng': 13.354233}],
         'distance': 352,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winterfeldtplatz', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50b0a9b3e4b042e7812688ab-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bc8b2591af852002ce30a2a',
        'name': 'But First Coffee',
        'location': {'address': 'Grunewaldstraße',
         'crossStreet': '89',
         'lat': 52.49012693344756,
         'lng': 13.35663378238678,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49012693344756,
           'lng': 13.35663378238678}],
         'distance': 462,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunewaldstraße (89)',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '511316359'}},
       'referralId': 'e-0-5bc8b2591af852002ce30a2a-19'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f538d3f8f53d359c4d3'},
  'response': {'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 7,
   'suggestedBounds': {'ne': {'lat': 52.500900004500004,
     'lng': 13.36977765980395},
    'sw': {'lat': 52.4918999955, 'lng': 13.355022340196049}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b1165c01953f3002c2b457f',
        'name': 'Zimt & Zucker',
        'location': {'address': 'Potsdamer Straße 103',
         'crossStreet': 'Potsdammer Straße',
         'lat': 52.50050298889769,
         'lng': 13.363508755230798,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50050298889769,
           'lng': 13.363508755230798}],
         'distance': 462,
         'postalCode': '10785',
         'cc': 'DE',
         'neighborhood': 'Viktoriakiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Potsdamer Straße 103 (Potsdammer Straße)',
          '10785 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b1165c01953f3002c2b457f-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a520e34521e3',
        'name': 'Savarin',
        'location': {'address': 'Kulmer Straße 17',
         'lat': 52.492616,
         'lng': 13.365025,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.492616,
           'lng': 13.365025}],
         'distance': 457,
         'postalCode': '10783',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kulmer Straße 17',
          '10783 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a520e34521e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cb32e50ef1b37040f805000',
        'name': 'Queen of Muffins',
        'location': {'address': 'Potsdamer Str. 112',
         'lat': 52.500809414757654,
         'lng': 13.36355496304227,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500809414757654,
           'lng': 13.36355496304227}],
         'distance': 497,
         'postalCode': '10785',
         'cc': 'DE',
         'neighborhood': 'Tiergarten',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Potsdamer Str. 112',
          '10785 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cb32e50ef1b37040f805000-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d8b80c97139b1f7e26fe1d4',
        'name': 'DiVan',
        'location': {'address': 'Potsdamer Str. 146',
         'lat': 52.49730893243956,
         'lng': 13.36188257135696,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49730893243956,
           'lng': 13.36188257135696}],
         'distance': 107,
         'postalCode': '10783',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Potsdamer Str. 146',
          '10783 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d8b80c97139b1f7e26fe1d4-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52a6fc7311d28f4dc542efb8',
        'name': 'hub:raum Café',
        'location': {'address': 'Winterfeldtstr. 21',
         'lat': 52.49626151548128,
         'lng': 13.358191173441384,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49626151548128,
           'lng': 13.358191173441384}],
         'distance': 285,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Winterfeldtstr. 21', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52a6fc7311d28f4dc542efb8-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fa6b09ae4b0b487cef7a680',
        'name': '1001 Nacht Cafe',
        'location': {'address': 'Potsdamer Str. 137',
         'lat': 52.49701880899013,
         'lng': 13.361782581117383,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49701880899013,
           'lng': 13.361782581117383}],
         'distance': 80,
         'postalCode': '10783',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Potsdamer Str. 137',
          '10783 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fa6b09ae4b0b487cef7a680-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a1565ce91eaca391bc8df59',
        'name': 'Urban Supply',
        'location': {'address': 'Potsdamer Str. 180',
         'lat': 52.493710681543696,
         'lng': 13.36087240045301,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493710681543696,
           'lng': 13.36087240045301}],
         'distance': 316,
         'postalCode': '10783',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Potsdamer Str. 180',
          '10783 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a1565ce91eaca391bc8df59-6'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5433f6626c689a6f58'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tiergarten',
   'headerFullLocation': 'Tiergarten, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5118000045, 'lng': 13.371679489272289},
    'sw': {'lat': 52.5027999955, 'lng': 13.356920510727711}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57598c1a498e0fb27b164289',
        'name': 'Café Estrade',
        'location': {'lat': 52.509072,
         'lng': 13.367377,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.509072,
           'lng': 13.367377}],
         'distance': 287,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57598c1a498e0fb27b164289-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f54e998a41dc43df987'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tiergarten',
   'headerFullLocation': 'Tiergarten, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.512300004500005,
     'lng': 13.351279573221026},
    'sw': {'lat': 52.5032999955, 'lng': 13.336520426778973}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6e4029c5243704e07e2aeb',
        'name': 'Cafe Minouche',
        'location': {'address': 'Budapester Str. 6',
         'lat': 52.50627057250485,
         'lng': 13.34391583126817,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50627057250485,
           'lng': 13.34391583126817}],
         'distance': 170,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Str. 6',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6e4029c5243704e07e2aeb-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5391b243498ee57f7d944d36',
        'name': 'Kusmi Tea',
        'location': {'address': 'Budapester Str. 38-50',
         'lat': 52.5054826,
         'lng': 13.338194,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5054826,
           'lng': 13.338194}],
         'distance': 464,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Str. 38-50',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '506713361'}},
       'referralId': 'e-0-5391b243498ee57f7d944d36-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d9f1443fca1b60c233cb650',
        'name': 'Berliner Bakery',
        'location': {'address': 'Ansbacher Str. 14',
         'lat': 52.50345486397204,
         'lng': 13.342675458762491,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50345486397204,
           'lng': 13.342675458762491}],
         'distance': 490,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ansbacher Str. 14',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d9f1443fca1b60c233cb650-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f54cce9aa16744046ec'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Hardenbergstraße',
   'headerFullLocation': 'Hardenbergstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 26,
   'suggestedBounds': {'ne': {'lat': 52.5062000045, 'lng': 13.34507854921528},
    'sw': {'lat': 52.4971999955, 'lng': 13.33032145078472}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c8a2b23e51e6dcb584966de',
        'name': 'Nespresso Boutique',
        'location': {'address': 'Tauentzienstr. 21-24',
         'lat': 52.501626360833576,
         'lng': 13.340258070826277,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501626360833576,
           'lng': 13.340258070826277}],
         'distance': 173,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 21-24',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c8a2b23e51e6dcb584966de-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dada3b5a86e0d401b8bb9a3',
        'name': 'Tchibo',
        'location': {'address': 'Tauentzienstr. 9-12',
         'lat': 52.50393035735101,
         'lng': 13.33760504320717,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50393035735101,
           'lng': 13.33760504320717}],
         'distance': 248,
         'postalCode': '10789',
         'cc': 'DE',
         'neighborhood': 'Wilmersdorf, Berlin',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 9-12',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dada3b5a86e0d401b8bb9a3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5acb3eccf79faa0a6bbb2109',
        'name': 'Hasty Pastry',
        'location': {'address': 'Bayreuther Strasse 6',
         'lat': 52.503141,
         'lng': 13.344363,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503141,
           'lng': 13.344363}],
         'distance': 479,
         'cc': 'DE',
         'city': 'Charlottenburg',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bayreuther Strasse 6',
          'Charlottenburg',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5acb3eccf79faa0a6bbb2109-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5391b243498ee57f7d944d36',
        'name': 'Kusmi Tea',
        'location': {'address': 'Budapester Str. 38-50',
         'lat': 52.5054826,
         'lng': 13.338194,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5054826,
           'lng': 13.338194}],
         'distance': 422,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Str. 38-50',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '506713361'}},
       'referralId': 'e-0-5391b243498ee57f7d944d36-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '536df58e498ebd8c93958712',
        'name': 'La Piadina',
        'location': {'address': 'Augsburger Str. 6',
         'lat': 52.50053799625231,
         'lng': 13.33779800760201,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50053799625231,
           'lng': 13.33779800760201}],
         'distance': 129,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Augsburger Str. 6',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-536df58e498ebd8c93958712-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5dfbb6b52f4b3400086a0c34',
        'name': 'Five Elephant Kadewe',
        'location': {'address': 'Kadewe',
         'lat': 52.501544,
         'lng': 13.341231,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501544,
           'lng': 13.341231}],
         'distance': 239,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kadewe', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5dfbb6b52f4b3400086a0c34-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bd2ebc477b29c74dd888f82',
        'name': 'Starbucks',
        'location': {'address': 'Kurfürstendamm 231',
         'lat': 52.503924,
         'lng': 13.333361,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503924,
           'lng': 13.333361}],
         'distance': 384,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kurfürstendamm 231',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bd2ebc477b29c74dd888f82-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '544634b0498e1428320a401b',
        'name': 'Caféhaus Grenander',
        'location': {'address': 'Wittenbergplatz 3a',
         'crossStreet': 'Bayreuther Str.',
         'lat': 52.50088835218635,
         'lng': 13.343110084533691,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50088835218635,
           'lng': 13.343110084533691}],
         'distance': 377,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wittenbergplatz 3a (Bayreuther Str.)',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-544634b0498e1428320a401b-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '534d0610498ee01b6f1437f6',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Budapester Str. 38-50',
         'lat': 52.505287,
         'lng': 13.337607,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.505287,
           'lng': 13.337607}],
         'distance': 399,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Str. 38-50',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-534d0610498ee01b6f1437f6-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51389a65e4b077bc6418098f',
        'name': 'Café Sinn & Sinnlichkeit',
        'location': {'address': 'Augsburger Straße 2',
         'lat': 52.50015276272254,
         'lng': 13.33860249401298,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50015276272254,
           'lng': 13.33860249401298}],
         'distance': 182,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Augsburger Straße 2',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '68522661'}},
       'referralId': 'e-0-51389a65e4b077bc6418098f-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d9f1443fca1b60c233cb650',
        'name': 'Berliner Bakery',
        'location': {'address': 'Ansbacher Str. 14',
         'lat': 52.50345486397204,
         'lng': 13.342675458762491,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50345486397204,
           'lng': 13.342675458762491}],
         'distance': 389,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ansbacher Str. 14',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d9f1443fca1b60c233cb650-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c387b0c93db0f472f972192',
        'name': "Cafe Tiffany's",
        'location': {'address': 'Tauentzienstr. 9-12',
         'lat': 52.50433847579813,
         'lng': 13.338165435993476,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50433847579813,
           'lng': 13.338165435993476}],
         'distance': 295,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 9-12',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c387b0c93db0f472f972192-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a5c8699628c83318709bca1',
        'name': 'Copper&Flint',
        'location': {'address': 'Budapester Str. 38-50',
         'lat': 52.505378,
         'lng': 13.336849,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.505378,
           'lng': 13.336849}],
         'distance': 413,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Str. 38-50',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a5c8699628c83318709bca1-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57090745498ee4f32e6e1982',
        'name': 'Spirit Coffee',
        'location': {'address': 'Budapester Str. 38-50',
         'lat': 52.50532932318987,
         'lng': 13.336211442947388,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50532932318987,
           'lng': 13.336211442947388}],
         'distance': 416,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Str. 38-50',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57090745498ee4f32e6e1982-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f93be3be4b04b1ee265326a',
        'name': 'MyCafé',
        'location': {'address': 'Nürnberger Str. 17',
         'lat': 52.50227517426624,
         'lng': 13.338497319576218,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50227517426624,
           'lng': 13.338497319576218}],
         'distance': 83,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Nürnberger Str. 17',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f93be3be4b04b1ee265326a-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bf7d5685ec320a1e39087d3',
        'name': 'Alt Berlin',
        'location': {'lat': 52.50312168107187,
         'lng': 13.336990476755659,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50312168107187,
           'lng': 13.336990476755659}],
         'distance': 165,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['10789 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bf7d5685ec320a1e39087d3-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d972d2097d06ea8b07d140b',
        'name': 'La Petite France',
        'location': {'address': 'Nürnberger str',
         'crossStreet': 'Augsburger Str',
         'lat': 52.500671240053144,
         'lng': 13.337396384549132,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500671240053144,
           'lng': 13.337396384549132}],
         'distance': 116,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Nürnberger str (Augsburger Str)',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d972d2097d06ea8b07d140b-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d1b3cc61683a14335717b51',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Tauentzienstr. 19/19a',
         'lat': 52.50272081879772,
         'lng': 13.339690633608484,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50272081879772,
           'lng': 13.339690633608484}],
         'distance': 176,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 19/19a',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '555633080'}},
       'referralId': 'e-0-4d1b3cc61683a14335717b51-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c7e24c510916dcb1b5e2b96',
        'name': 'Galleria illy',
        'location': {'address': 'Tauentzienstr. 21-24',
         'lat': 52.50171127185375,
         'lng': 13.341071605682373,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50171127185375,
           'lng': 13.341071605682373}],
         'distance': 228,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 21-24',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c7e24c510916dcb1b5e2b96-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f50c6d9e4b062d9da38e7b8',
        'name': 'Cafe Sawanna',
        'location': {'address': 'Welserstr. 25',
         'lat': 52.49881782682959,
         'lng': 13.342051478342471,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49881782682959,
           'lng': 13.342051478342471}],
         'distance': 435,
         'postalCode': '10777',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Welserstr. 25', '10777 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f50c6d9e4b062d9da38e7b8-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5677f0bc498e5bd078ab4ae7',
        'name': 'Lavazza',
        'location': {'address': 'Tauentzienstr. 21-24',
         'lat': 52.501894223542884,
         'lng': 13.341600586911722,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501894223542884,
           'lng': 13.341600586911722}],
         'distance': 265,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 21-24',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5677f0bc498e5bd078ab4ae7-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b78f440f964a52043e72ee3',
        'name': 'au petit delice',
        'location': {'address': 'Rankestr. 31',
         'lat': 52.50333865875585,
         'lng': 13.334663836109192,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50333865875585,
           'lng': 13.334663836109192}],
         'distance': 274,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rankestr. 31', '10789 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b78f440f964a52043e72ee3-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc00bb6f7b115b875d735e7',
        'name': 'Leo Coffee Bar',
        'location': {'address': 'Tauentzienstr. 9-12',
         'lat': 52.50465014492073,
         'lng': 13.337552547454832,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50465014492073,
           'lng': 13.337552547454832}],
         'distance': 328,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tauentzienstr. 9-12',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc00bb6f7b115b875d735e7-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '502bb059e4b0b81736ec62e3',
        'name': 'Backshop La Posha',
        'location': {'address': 'Bayreuther Str. 36',
         'lat': 52.5010575379193,
         'lng': 13.34326919573817,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5010575379193,
           'lng': 13.34326919573817}],
         'distance': 384,
         'postalCode': '10789',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bayreuther Str. 36',
          '10789 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-502bb059e4b0b81736ec62e3-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d89f4a2ea4e74000802e4a5',
        'name': 'Café Luzia',
        'location': {'address': 'Budapester Straße 38-50',
         'lat': 52.505672,
         'lng': 13.334886,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.505672,
           'lng': 13.334886}],
         'distance': 481,
         'postalCode': '10787',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Budapester Straße 38-50',
          '10787 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d89f4a2ea4e74000802e4a5-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '503b2827e4b0ee7fafabd730',
        'name': 'Carisma Bakery',
        'location': {'address': 'Knesebeckstr. 64',
         'lat': 52.50138537073018,
         'lng': 13.330944527084837,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50138537073018,
           'lng': 13.330944527084837}],
         'distance': 459,
         'postalCode': '10719',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Knesebeckstr. 64',
          '10719 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-503b2827e4b0ee7fafabd730-25'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5569bc8506c4c6dc6f'},
  'response': {'headerLocation': 'Akazienkiez',
   'headerFullLocation': 'Akazienkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 9,
   'suggestedBounds': {'ne': {'lat': 52.4918000045, 'lng': 13.358276133348701},
    'sw': {'lat': 52.482799995499995, 'lng': 13.343523866651298}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b506d57f964a520fe2227e3',
        'name': 'DoubleEye',
        'location': {'address': 'Akazienstr. 22',
         'lat': 52.48799274353971,
         'lng': 13.354272878353157,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48799274353971,
           'lng': 13.354272878353157}],
         'distance': 241,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 22',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b506d57f964a520fe2227e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda76f964a520d64521e3',
        'name': 'Tee Tea Thé',
        'location': {'address': 'Goltzstr. 2',
         'lat': 52.490227288565116,
         'lng': 13.353177985495995,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490227288565116,
           'lng': 13.353177985495995}],
         'distance': 360,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Goltzstr. 2', '10781 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda76f964a520d64521e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a520024621e3',
        'name': 'Gottlob',
        'location': {'address': 'Akazienstr. 17',
         'lat': 52.489293253107576,
         'lng': 13.353526673712864,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.489293253107576,
           'lng': 13.353526673712864}],
         'distance': 284,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 17',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a520024621e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b8d7710f964a52049fd32e3',
        'name': 'Rote Beete',
        'location': {'address': 'Gleditschstr. 71',
         'lat': 52.490436580690485,
         'lng': 13.354926819716542,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490436580690485,
           'lng': 13.354926819716542}],
         'distance': 443,
         'postalCode': '10781',
         'cc': 'DE',
         'neighborhood': 'Akazien',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gleditschstr. 71',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b8d7710f964a52049fd32e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59a6c965fc9e943b5bac1240',
        'name': 'Impala Coffee',
        'location': {'lat': 52.48714469761236,
         'lng': 13.354953745932475,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48714469761236,
           'lng': 13.354953745932475}],
         'distance': 275,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59a6c965fc9e943b5bac1240-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4db2ae016a23c31a02f08015',
        'name': "salt 'n' sweet",
        'location': {'address': 'Eisenacher Str. 87 - 88',
         'lat': 52.49027777149155,
         'lng': 13.346473562142535,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49027777149155,
           'lng': 13.346473562142535}],
         'distance': 447,
         'postalCode': '10781',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eisenacher Str. 87 - 88',
          '10781 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4db2ae016a23c31a02f08015-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eff3d1961af974bcd71f6ac',
        'name': "Billy's • Café & Bar",
        'location': {'address': 'Grunewaldstr. 29',
         'lat': 52.48937892512784,
         'lng': 13.348002433776855,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48937892512784,
           'lng': 13.348002433776855}],
         'distance': 303,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunewaldstr. 29',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eff3d1961af974bcd71f6ac-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b51f7ba0a08ab002cd2472a',
        'name': 'Goodies Healthy Food',
        'location': {'lat': 52.486558,
         'lng': 13.355429,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486558,
           'lng': 13.355429}],
         'distance': 317,
         'cc': 'DE',
         'neighborhood': 'Akazienkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b51f7ba0a08ab002cd2472a-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bc8b2591af852002ce30a2a',
        'name': 'But First Coffee',
        'location': {'address': 'Grunewaldstraße',
         'crossStreet': '89',
         'lat': 52.49012693344756,
         'lng': 13.35663378238678,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49012693344756,
           'lng': 13.35663378238678}],
         'distance': 500,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunewaldstraße (89)',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '511316359'}},
       'referralId': 'e-0-5bc8b2591af852002ce30a2a-8'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f557694ba313bddd269'},
  'response': {'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.488300004500005,
     'lng': 13.348675546468241},
    'sw': {'lat': 52.4792999955, 'lng': 13.33392445353176}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e9e9fff30f8fb6775ffcfb4',
        'name': 'Cafe Geschmacklos',
        'location': {'address': 'Badensche Str. 50',
         'lat': 52.48567188174349,
         'lng': 13.337519534861807,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48567188174349,
           'lng': 13.337519534861807}],
         'distance': 330,
         'postalCode': '10825',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Badensche Str. 50',
          '10825 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e9e9fff30f8fb6775ffcfb4-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56c61087498e971bc42454e5',
        'name': 'Café Lavie',
        'location': {'address': 'Wartburgstr. 25',
         'lat': 52.486127900975056,
         'lng': 13.338629627719024,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486127900975056,
           'lng': 13.338629627719024}],
         'distance': 316,
         'postalCode': '10825',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wartburgstr. 25',
          '10825 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56c61087498e971bc42454e5-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d7f9eac2ff9b60c4080c147',
        'name': '"Vis à Vis" Cafè Bar Lounge',
        'location': {'address': 'Meraner Straße 20 b',
         'crossStreet': 'Badenschestraße',
         'lat': 52.485782298884715,
         'lng': 13.338377473327904,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.485782298884715,
           'lng': 13.338377473327904}],
         'distance': 296,
         'postalCode': '10825',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Meraner Straße 20 b (Badenschestraße)',
          '10825 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '67017792'}},
       'referralId': 'e-0-4d7f9eac2ff9b60c4080c147-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c39c5bf3849c92884c3c1b1',
        'name': 'Parkcafé Pusteblume',
        'location': {'address': 'Durlacher Str. 2',
         'lat': 52.48031704883435,
         'lng': 13.33662400967685,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48031704883435,
           'lng': 13.33662400967685}],
         'distance': 500,
         'postalCode': '10715',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Durlacher Str. 2',
          '10715 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c39c5bf3849c92884c3c1b1-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f56a5421e17ccecae2b'},
  'response': {'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 7,
   'suggestedBounds': {'ne': {'lat': 52.488300004500005,
     'lng': 13.361675546468241},
    'sw': {'lat': 52.4792999955, 'lng': 13.34692445353176}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b506d57f964a520fe2227e3',
        'name': 'DoubleEye',
        'location': {'address': 'Akazienstr. 22',
         'lat': 52.48799274353971,
         'lng': 13.354272878353157,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48799274353971,
           'lng': 13.354272878353157}],
         'distance': 466,
         'postalCode': '10823',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Akazienstr. 22',
          '10823 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b506d57f964a520fe2227e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '579b7d3b498ea8f02d59f2f3',
        'name': 'Café de Enrico',
        'location': {'address': 'Fritz-Reuter-Straße 13',
         'crossStreet': 'Gustav-Muller-Straße',
         'lat': 52.481013876466925,
         'lng': 13.349787701000947,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.481013876466925,
           'lng': 13.349787701000947}],
         'distance': 435,
         'postalCode': '10827',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fritz-Reuter-Straße 13 (Gustav-Muller-Straße)',
          '10827 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-579b7d3b498ea8f02d59f2f3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d9a9d1673df8cfa5495e3ec',
        'name': 'Mokalola',
        'location': {'address': 'Leberstr. 21',
         'lat': 52.48432707145924,
         'lng': 13.361495269419237,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48432707145924,
           'lng': 13.361495269419237}],
         'distance': 491,
         'postalCode': '10829',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leberstr. 21', '10829 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d9a9d1673df8cfa5495e3ec-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59a6c965fc9e943b5bac1240',
        'name': 'Impala Coffee',
        'location': {'lat': 52.48714469761236,
         'lng': 13.354953745932475,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48714469761236,
           'lng': 13.354953745932475}],
         'distance': 374,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59a6c965fc9e943b5bac1240-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b51f7ba0a08ab002cd2472a',
        'name': 'Goodies Healthy Food',
        'location': {'lat': 52.486558,
         'lng': 13.355429,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486558,
           'lng': 13.355429}],
         'distance': 316,
         'cc': 'DE',
         'neighborhood': 'Akazienkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b51f7ba0a08ab002cd2472a-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55a8dfb6498e196699c8f4c0',
        'name': 'Café im Wasserturm',
        'location': {'address': 'Torgauer Str. 12-15',
         'lat': 52.481219,
         'lng': 13.356603,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.481219,
           'lng': 13.356603}],
         'distance': 326,
         'postalCode': '10829',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torgauer Str. 12-15',
          '10829 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55a8dfb6498e196699c8f4c0-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '536c925b498e9de78fb713d6',
        'name': 'Café Zeit',
        'location': {'address': 'Dominicusstr. 40',
         'lat': 52.48123865301342,
         'lng': 13.349626003958022,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48123865301342,
           'lng': 13.349626003958022}],
         'distance': 426,
         'postalCode': '10827',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dominicusstr. 40',
          '10827 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-536c925b498e9de78fb713d6-6'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f56334c670565cf37d9'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.480600004500005,
     'lng': 13.368074255756751},
    'sw': {'lat': 52.4715999955, 'lng': 13.353325744243248}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '579781c2498e58b79df5b1c0',
        'name': 'PapalaCup',
        'location': {'address': 'Gotenstr. 55',
         'crossStreet': 'Torgauer Str.',
         'lat': 52.47977811367951,
         'lng': 13.360209012031753,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47977811367951,
           'lng': 13.360209012031753}],
         'distance': 410,
         'postalCode': '10829',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gotenstr. 55 (Torgauer Str.)',
          '10829 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-579781c2498e58b79df5b1c0-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e26dbd8149503e3719a3b37',
        'name': 'Segafredo',
        'location': {'address': 'General-Pape-Str. 1',
         'lat': 52.476444577788264,
         'lng': 13.364651744186489,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.476444577788264,
           'lng': 13.364651744186489}],
         'distance': 270,
         'postalCode': '12101',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['General-Pape-Str. 1',
          '12101 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e26dbd8149503e3719a3b37-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f562158a34dc843eef8'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Urban',
   'headerFullLocation': 'Urban, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 16,
   'suggestedBounds': {'ne': {'lat': 52.497100004500005,
     'lng': 13.404877022283628},
    'sw': {'lat': 52.4880999955, 'lng': 13.390122977716373}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eea5e33a17ce863c4d4c3d3',
        'name': 'Chapter One',
        'location': {'address': 'Mittenwalder Str. 30',
         'lat': 52.48976163897703,
         'lng': 13.395976072085904,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48976163897703,
           'lng': 13.395976072085904}],
         'distance': 332,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mittenwalder Str. 30',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eea5e33a17ce863c4d4c3d3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adf5c28f964a520dd7921e3',
        'name': 'Cuccuma',
        'location': {'address': 'Zossener Str. 34',
         'lat': 52.490682082409705,
         'lng': 13.39419235367524,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490682082409705,
           'lng': 13.39419235367524}],
         'distance': 309,
         'postalCode': '10961',
         'cc': 'DE',
         'neighborhood': 'Kreuzberg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Zossener Str. 34',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adf5c28f964a520dd7921e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51a0921e498e4b1069594cae',
        'name': 'Cafe Strauss',
        'location': {'address': 'Bergmannstr. 42',
         'lat': 52.48885463809621,
         'lng': 13.400800812420202,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48885463809621,
           'lng': 13.400800812420202}],
         'distance': 473,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstr. 42',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51a0921e498e4b1069594cae-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5718d8e6498e8b6c093b4287',
        'name': 'Soviet Gallery & Cafe',
        'location': {'address': 'Solmsstr. 35',
         'lat': 52.49070358276367,
         'lng': 13.392443656921387,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49070358276367,
           'lng': 13.392443656921387}],
         'distance': 402,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Solmsstr. 35', '10961 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '199780496'}},
       'referralId': 'e-0-5718d8e6498e8b6c093b4287-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5086cbc6e4b030ac95ecd16b',
        'name': 'Kiez Rösterei',
        'location': {'address': 'Gneisenaustr. 68',
         'lat': 52.49024687187859,
         'lng': 13.401690172545306,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49024687187859,
           'lng': 13.401690172545306}],
         'distance': 386,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gneisenaustr. 68',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5086cbc6e4b030ac95ecd16b-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b51d2e2f964a520de5627e3',
        'name': 'Mokkabar',
        'location': {'address': 'Gneisenaustr. 93',
         'lat': 52.491718570995225,
         'lng': 13.393796613809625,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.491718570995225,
           'lng': 13.393796613809625}],
         'distance': 269,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gneisenaustr. 93',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b51d2e2f964a520de5627e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '537a43a5498eaeb3ef29619f',
        'name': 'Smyrna Kuruyemis',
        'location': {'address': 'Zossenerstr.',
         'lat': 52.490300732454486,
         'lng': 13.394030686203648,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490300732454486,
           'lng': 13.394030686203648}],
         'distance': 347,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Zossenerstr.', '10961 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-537a43a5498eaeb3ef29619f-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51efc616498e10a083cf9399',
        'name': 'Goodcoffee',
        'location': {'address': 'Marheinekeplatz 15',
         'lat': 52.48939064294808,
         'lng': 13.394616451548226,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48939064294808,
           'lng': 13.394616451548226}],
         'distance': 407,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marheinekeplatz 15', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51efc616498e10a083cf9399-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4faa5f3ce4b04bd0be6d36d8',
        'name': '7 Schwestern',
        'location': {'address': 'Gneisenaustr. 65',
         'lat': 52.49004422069116,
         'lng': 13.402525052582936,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49004422069116,
           'lng': 13.402525052582936}],
         'distance': 443,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gneisenaustr. 65',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4faa5f3ce4b04bd0be6d36d8-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c53ed765b839521ac7bba31',
        'name': 'Coffee Cult',
        'location': {'address': 'Bergmannstr. 89',
         'lat': 52.48926321895144,
         'lng': 13.393264135545238,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48926321895144,
           'lng': 13.393264135545238}],
         'distance': 469,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstr. 89',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '552380659'}},
       'referralId': 'e-0-4c53ed765b839521ac7bba31-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55a28f9b498eacf2d4ea8fb9',
        'name': 'ELIZA Café & Backstube',
        'location': {'address': 'Zossener Str. 16',
         'lat': 52.491647014406034,
         'lng': 13.394356714639926,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.491647014406034,
           'lng': 13.394356714639926}],
         'distance': 237,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Zossener Str. 16',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55a28f9b498eacf2d4ea8fb9-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5331845c11d2c17e3a83809c',
        'name': 'Caffè De Rosa',
        'location': {'address': 'Baerwaldstr. 45',
         'crossStreet': 'Gneisenaustr.',
         'lat': 52.49070750944803,
         'lng': 13.400660160467062,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49070750944803,
           'lng': 13.400660160467062}],
         'distance': 300,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Baerwaldstr. 45 (Gneisenaustr.)',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5331845c11d2c17e3a83809c-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '569a35f8498eb5f34c54fec4',
        'name': "gizmo's sweet coffee",
        'location': {'lat': 52.48927697701693,
         'lng': 13.39465410460478,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48927697701693,
           'lng': 13.39465410460478}],
         'distance': 417,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-569a35f8498eb5f34c54fec4-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc724a92f94d13a474f117f',
        'name': 'Tchibo',
        'location': {'address': 'Marheinekeplatz 15',
         'lat': 52.48932666206235,
         'lng': 13.39403450489044,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48932666206235,
           'lng': 13.39403450489044}],
         'distance': 433,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marheinekeplatz 15',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc724a92f94d13a474f117f-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58ef80ad9746174107a75240',
        'name': 'Balzac Caffee',
        'location': {'lat': 52.48931,
         'lng': 13.392743,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48931,
           'lng': 13.392743}],
         'distance': 487,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58ef80ad9746174107a75240-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5afd7963a89b5a00247988e6',
        'name': 'breakout Café',
        'location': {'address': 'Bergmannstraße 22',
         'lat': 52.488948,
         'lng': 13.393902,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.488948,
           'lng': 13.393902}],
         'distance': 474,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstraße 22',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5afd7963a89b5a00247988e6-15'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f57dfad1e14df24142e'},
  'response': {'headerLocation': 'Kreuzberg',
   'headerFullLocation': 'Kreuzberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 7,
   'suggestedBounds': {'ne': {'lat': 52.504800004500005,
     'lng': 13.38867831424946},
    'sw': {'lat': 52.4957999955, 'lng': 13.373921685750538}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53dc0690498e43c1f952aac8',
        'name': 'boum',
        'location': {'address': 'Tempelhofer Ufer 32',
         'lat': 52.49981529823926,
         'lng': 13.377295045397448,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49981529823926,
           'lng': 13.377295045397448}],
         'distance': 276,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Tempelhofer Ufer 32',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53dc0690498e43c1f952aac8-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c8b83de770fb60c1f6cdcc3',
        'name': 'Schnittchen',
        'location': {'address': 'Großbeerenstr. 78',
         'crossStreet': 'Obentrautstr.',
         'lat': 52.496999152207074,
         'lng': 13.384660932992407,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496999152207074,
           'lng': 13.384660932992407}],
         'distance': 432,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Großbeerenstr. 78 (Obentrautstr.)',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c8b83de770fb60c1f6cdcc3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d219399756e8cfa5ed67654',
        'name': 'Café Rundum',
        'location': {'address': 'Stresemannstr. 37',
         'lat': 52.500827338963774,
         'lng': 13.386569301080185,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500827338963774,
           'lng': 13.386569301080185}],
         'distance': 361,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stresemannstr. 37',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d219399756e8cfa5ed67654-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55046316498e7c6aa5873e99',
        'name': 'Maracay Coffee',
        'location': {'address': 'Stresemannstr. 72',
         'lat': 52.50365648773195,
         'lng': 13.383749909765978,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50365648773195,
           'lng': 13.383749909765978}],
         'distance': 408,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Stresemannstr. 72',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55046316498e7c6aa5873e99-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c5d6026491be7003269a75d',
        'name': 'Lycke',
        'location': {'address': 'Luckenwalder Str. 15',
         'lat': 52.499915,
         'lng': 13.376739,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.499915,
           'lng': 13.376739}],
         'distance': 312,
         'postalCode': '10963',
         'cc': 'DE',
         'neighborhood': 'Viktoriakiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Luckenwalder Str. 15',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c5d6026491be7003269a75d-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e1b4f22ae60ddb8f651bba9',
        'name': 'Sehraya',
        'location': {'lat': 52.4971429003936,
         'lng': 13.384698457418418,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4971429003936,
           'lng': 13.384698457418418}],
         'distance': 420,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e1b4f22ae60ddb8f651bba9-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e6cae93d22d0f50962e645a',
        'name': 'Café Anhalt',
        'location': {'address': 'Trebbiner Str. 9',
         'lat': 52.49855085945708,
         'lng': 13.376906335426087,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49855085945708,
           'lng': 13.376906335426087}],
         'distance': 355,
         'postalCode': '10963',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Trebbiner Str. 9',
          '10963 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e6cae93d22d0f50962e645a-6'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f57526d023dffc693e9'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Bergmannkiez',
   'headerFullLocation': 'Bergmannkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 10,
   'suggestedBounds': {'ne': {'lat': 52.490000004500004,
     'lng': 13.401975831509363},
    'sw': {'lat': 52.4809999955, 'lng': 13.387224168490638}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ccc3029c9b8468890d4bac3',
        'name': 'Golightly Coffee Bar',
        'location': {'address': 'Friesenstr. 22',
         'lat': 52.48792270750849,
         'lng': 13.394453434663497,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48792270750849,
           'lng': 13.394453434663497}],
         'distance': 269,
         'postalCode': '10965',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friesenstr. 22',
          '10965 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ccc3029c9b8468890d4bac3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eea5e33a17ce863c4d4c3d3',
        'name': 'Chapter One',
        'location': {'address': 'Mittenwalder Str. 30',
         'lat': 52.48976163897703,
         'lng': 13.395976072085904,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48976163897703,
           'lng': 13.395976072085904}],
         'distance': 483,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mittenwalder Str. 30',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eea5e33a17ce863c4d4c3d3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fe6111fe4b022720417b47d',
        'name': 'T berlin',
        'location': {'address': 'Fidicinstr. 38',
         'lat': 52.48717353082823,
         'lng': 13.389278178337792,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48717353082823,
           'lng': 13.389278178337792}],
         'distance': 406,
         'postalCode': '10965',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fidicinstr. 38',
          '10965 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fe6111fe4b022720417b47d-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51efc616498e10a083cf9399',
        'name': 'Goodcoffee',
        'location': {'address': 'Marheinekeplatz 15',
         'lat': 52.48939064294808,
         'lng': 13.394616451548226,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48939064294808,
           'lng': 13.394616451548226}],
         'distance': 433,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marheinekeplatz 15', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51efc616498e10a083cf9399-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c53ed765b839521ac7bba31',
        'name': 'Coffee Cult',
        'location': {'address': 'Bergmannstr. 89',
         'lat': 52.48926321895144,
         'lng': 13.393264135545238,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48926321895144,
           'lng': 13.393264135545238}],
         'distance': 428,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstr. 89',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '552380659'}},
       'referralId': 'e-0-4c53ed765b839521ac7bba31-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '569a35f8498eb5f34c54fec4',
        'name': "gizmo's sweet coffee",
        'location': {'lat': 52.48927697701693,
         'lng': 13.39465410460478,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48927697701693,
           'lng': 13.39465410460478}],
         'distance': 420,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-569a35f8498eb5f34c54fec4-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58ef80ad9746174107a75240',
        'name': 'Balzac Caffee',
        'location': {'lat': 52.48931,
         'lng': 13.392743,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48931,
           'lng': 13.392743}],
         'distance': 442,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58ef80ad9746174107a75240-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc724a92f94d13a474f117f',
        'name': 'Tchibo',
        'location': {'address': 'Marheinekeplatz 15',
         'lat': 52.48932666206235,
         'lng': 13.39403450489044,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48932666206235,
           'lng': 13.39403450489044}],
         'distance': 427,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Marheinekeplatz 15',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc724a92f94d13a474f117f-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5afd7963a89b5a00247988e6',
        'name': 'breakout Café',
        'location': {'address': 'Bergmannstraße 22',
         'lat': 52.488948,
         'lng': 13.393902,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.488948,
           'lng': 13.393902}],
         'distance': 386,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstraße 22',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5afd7963a89b5a00247988e6-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b1937c6f964a52062d923e3',
        'name': 'Kaffee am Meer',
        'location': {'address': 'Bergmannstr. 95',
         'lat': 52.48952669654143,
         'lng': 13.391443022543472,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48952669654143,
           'lng': 13.391443022543472}],
         'distance': 496,
         'postalCode': '10961',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bergmannstr. 95',
          '10961 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b1937c6f964a52062d923e3-9'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f58526d023dffc6956f'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Graefekiez',
   'headerFullLocation': 'Graefekiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 19,
   'suggestedBounds': {'ne': {'lat': 52.4950000045, 'lng': 13.42377667003095},
    'sw': {'lat': 52.485999995499995, 'lng': 13.409023329969049}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '544f8e61498eafa13b4a689e',
        'name': 'Zazza',
        'location': {'lat': 52.4918024151049,
         'lng': 13.420756831047827,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4918024151049,
           'lng': 13.420756831047827}],
         'distance': 328,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-544f8e61498eafa13b4a689e-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55aa26e0498e3edffc141170',
        'name': 'playing with eels',
        'location': {'address': 'Urbanstraße 32',
         'crossStreet': 'Fichtestraße',
         'lat': 52.49142942289499,
         'lng': 13.414000847075965,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49142942289499,
           'lng': 13.414000847075965}],
         'distance': 192,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Urbanstraße 32 (Fichtestraße)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55aa26e0498e3edffc141170-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54492483498ea61e4181c38e',
        'name': 'Macha Macha',
        'location': {'address': 'Hasenheide 16',
         'lat': 52.48752162918853,
         'lng': 13.420358867486186,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48752162918853,
           'lng': 13.420358867486186}],
         'distance': 426,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hasenheide 16', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54492483498ea61e4181c38e-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ff40c5ee4b058e163c05f4f',
        'name': 'Brandi Espressobar',
        'location': {'address': 'Dieffenbachstr. 63',
         'lat': 52.493063916629616,
         'lng': 13.414842438256999,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493063916629616,
           'lng': 13.414842438256999}],
         'distance': 304,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dieffenbachstr. 63',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ff40c5ee4b058e163c05f4f-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '577cf059498e659c09f86955',
        'name': 'Löblich',
        'location': {'address': 'Hasenheide 49',
         'lat': 52.488912,
         'lng': 13.411035,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.488912,
           'lng': 13.411035}],
         'distance': 404,
         'postalCode': '10967',
         'cc': 'DE',
         'neighborhood': 'Urban',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hasenheide 49', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-577cf059498e659c09f86955-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc99fec3740b71348fa5e65',
        'name': 'Goldmarie',
        'location': {'address': 'Grimmstr. 29',
         'crossStreet': 'Böckhstr.',
         'lat': 52.49467677113297,
         'lng': 13.41556191444397,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49467677113297,
           'lng': 13.41556191444397}],
         'distance': 468,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grimmstr. 29 (Böckhstr.)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc99fec3740b71348fa5e65-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cc20f7b38aaa09342d50362',
        'name': 'Dildile',
        'location': {'address': 'Dieffenbach str 62',
         'lat': 52.49307604638997,
         'lng': 13.415168132279412,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49307604638997,
           'lng': 13.415168132279412}],
         'distance': 298,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dieffenbach str 62',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cc20f7b38aaa09342d50362-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '598f0f0516ef6706699c1222',
        'name': 'Kaffee Kirsche Roastery',
        'location': {'address': 'Böckhstr. 30',
         'crossStreet': 'Kottbusser Damm',
         'lat': 52.493115247914595,
         'lng': 13.421864808950849,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493115247914595,
           'lng': 13.421864808950849}],
         'distance': 471,
         'postalCode': '10967',
         'cc': 'DE',
         'neighborhood': 'Graefekiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Böckhstr. 30 (Kottbusser Damm)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-598f0f0516ef6706699c1222-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c332f30213c2d7fee7a365d',
        'name': 'La Femme',
        'location': {'address': 'Kottbusser Damm 77',
         'crossStreet': 'Pflügerstr.',
         'lat': 52.490939737012106,
         'lng': 13.423513063950589,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490939737012106,
           'lng': 13.423513063950589}],
         'distance': 484,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kottbusser Damm 77 (Pflügerstr.)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c332f30213c2d7fee7a365d-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e184e9714957dc705d59a21',
        'name': 'KaffeeBar',
        'location': {'address': 'Graefestr. 8',
         'lat': 52.49428567051442,
         'lng': 13.418727812908049,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49428567051442,
           'lng': 13.418727812908049}],
         'distance': 449,
         'postalCode': '10967',
         'cc': 'DE',
         'neighborhood': 'Graefekiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Graefestr. 8', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e184e9714957dc705d59a21-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c13b0cda1010f473d044b18',
        'name': 'Schönes Café',
        'location': {'address': 'Dieffenbachstr. 51',
         'lat': 52.49226060640314,
         'lng': 13.417889380628731,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49226060640314,
           'lng': 13.417889380628731}],
         'distance': 220,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dieffenbachstr. 51',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c13b0cda1010f473d044b18-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56d6d6ba498e13a3a2d13aa1',
        'name': 'Teesaloniki',
        'location': {'address': 'Böckhstr. 50',
         'lat': 52.494281,
         'lng': 13.416163,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494281,
           'lng': 13.416163}],
         'distance': 421,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Böckhstr. 50', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56d6d6ba498e13a3a2d13aa1-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b90bb43f964a520a59533e3',
        'name': 'Monsieur Ibrahim',
        'location': {'address': 'Körtestr. 8',
         'lat': 52.49127914808099,
         'lng': 13.411446557081689,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49127914808099,
           'lng': 13.411446557081689}],
         'distance': 346,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Körtestr. 8', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b90bb43f964a520a59533e3-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a2eaad16bdee626736f40bd',
        'name': 'Mephisto Cafe',
        'location': {'lat': 52.493985,
         'lng': 13.418309,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493985,
           'lng': 13.418309}],
         'distance': 408,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a2eaad16bdee626736f40bd-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c62bb42898bdc002c245e37',
        'name': 'Atlas',
        'location': {'address': 'Gräfestraße 10',
         'lat': 52.493684,
         'lng': 13.418195,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493684,
           'lng': 13.418195}],
         'distance': 374,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gräfestraße 10',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c62bb42898bdc002c245e37-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51596363e4b0e3e0b68377d3',
        'name': 'milchmädchen cafe',
        'location': {'lat': 52.494796,
         'lng': 13.415575,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494796,
           'lng': 13.415575}],
         'distance': 481,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51596363e4b0e3e0b68377d3-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c1a053afe5a76b02a650415',
        'name': 'Café Bethesda',
        'location': {'address': 'Dieffenbachstr. 44',
         'lat': 52.4919,
         'lng': 13.41936,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4919,
           'lng': 13.41936}],
         'distance': 254,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dieffenbachstr. 44',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c1a053afe5a76b02a650415-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56b61901498e2c32d1d2feda',
        'name': 'Dobedo',
        'location': {'address': 'Graefestrasse 82',
         'lat': 52.49375422142633,
         'lng': 13.417845917416518,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49375422142633,
           'lng': 13.417845917416518}],
         'distance': 375,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Graefestrasse 82',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56b61901498e2c32d1d2feda-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ce9192cf1c6236a0ba763f0',
        'name': 'Raffiné',
        'location': {'address': 'Hasenheide 12',
         'lat': 52.48732261245657,
         'lng': 13.42155574258197,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48732261245657,
           'lng': 13.42155574258197}],
         'distance': 497,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hasenheide 12', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ce9192cf1c6236a0ba763f0-18'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f58e998a41dc43e0ad2'},
  'response': {'headerLocation': 'Kreuzberg',
   'headerFullLocation': 'Kreuzberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.5070000045, 'lng': 13.408578683490159},
    'sw': {'lat': 52.497999995499995, 'lng': 13.39382131650984}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a520364d552c76a47afad4b',
        'name': 'ZWEITAUSEND - Kaffee Kantine',
        'location': {'address': 'Lobeckstrasse 30-35',
         'lat': 52.503108893768555,
         'lng': 13.407526016235352,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503108893768555,
           'lng': 13.407526016235352}],
         'distance': 433,
         'postalCode': '10969',
         'cc': 'DE',
         'neighborhood': 'Moritzplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lobeckstrasse 30-35',
          '10969 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a520364d552c76a47afad4b-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e89d0b2b634bc3516294470',
        'name': 'Café Dix',
        'location': {'address': 'Alte Jakobstr. 124-128',
         'lat': 52.50346734473606,
         'lng': 13.39855135289351,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50346734473606,
           'lng': 13.39855135289351}],
         'distance': 209,
         'postalCode': '10969',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alte Jakobstr. 124-128',
          '10969 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e89d0b2b634bc3516294470-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50729624e4b09822b9b53fb7',
        'name': 'Café Schmus',
        'location': {'address': 'Lindenstr. 9-14',
         'lat': 52.502393761003546,
         'lng': 13.395649194717407,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.502393761003546,
           'lng': 13.395649194717407}],
         'distance': 376,
         'postalCode': '10969',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lindenstr. 9-14',
          '10969 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50729624e4b09822b9b53fb7-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5360cff9498eb95c3721222b',
        'name': 'Café Linden',
        'location': {'address': 'Lindenstr. 26',
         'lat': 52.504426149845784,
         'lng': 13.39639271167637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.504426149845784,
           'lng': 13.39639271167637}],
         'distance': 389,
         'postalCode': '10969',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lindenstr. 26', '10969 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5360cff9498eb95c3721222b-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f59d9a71631446b6cd3'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Kreuzberg',
   'headerFullLocation': 'Kreuzberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 23,
   'suggestedBounds': {'ne': {'lat': 52.505400004500004,
     'lng': 13.442978414946728},
    'sw': {'lat': 52.4963999955, 'lng': 13.428221585053274}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b711281f964a520ef382de3',
        'name': 'Baretto',
        'location': {'address': 'Wrangelstrasse',
         'crossStreet': 'Sorauerstraße',
         'lat': 52.49985010430558,
         'lng': 13.438835664396496,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49985010430558,
           'lng': 13.438835664396496}],
         'distance': 248,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstrasse (Sorauerstraße)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b711281f964a520ef382de3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '513ed476e4b0579d42f760cc',
        'name': 'eliza - Café & Lieblingsstücke',
        'location': {'address': 'Sorauer Str. 6',
         'lat': 52.49902670119798,
         'lng': 13.438600811407404,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49902670119798,
           'lng': 13.438600811407404}],
         'distance': 291,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sorauer Str. 6',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '55590248'}},
       'referralId': 'e-0-513ed476e4b0579d42f760cc-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '520f46f511d2c0d413d14d49',
        'name': 'Kaffee 9',
        'location': {'address': 'Eisenbahnstr. 42',
         'lat': 52.50194876234582,
         'lng': 13.431997040702443,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50194876234582,
           'lng': 13.431997040702443}],
         'distance': 270,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eisenbahnstr. 42',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-520f46f511d2c0d413d14d49-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57f6322e498ef9ae27cd0158',
        'name': 'Pola Café',
        'location': {'address': 'Köpenicker Straße 10',
         'lat': 52.503141917674284,
         'lng': 13.438058605641771,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.503141917674284,
           'lng': 13.438058605641771}],
         'distance': 300,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Köpenicker Straße 10',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57f6322e498ef9ae27cd0158-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af49b4af964a52048f421e3',
        'name': 'Mano Cafe',
        'location': {'address': 'Skalitzer Str. 46A',
         'lat': 52.49912861276276,
         'lng': 13.430566300836764,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49912861276276,
           'lng': 13.430566300836764}],
         'distance': 394,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Skalitzer Str. 46A',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af49b4af964a52048f421e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50b7c7cbe4b08ce3c6bd56a8',
        'name': 'Sumak Teehaus',
        'location': {'address': 'Wrangelstr. 46',
         'lat': 52.49919280814795,
         'lng': 13.440190826698386,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49919280814795,
           'lng': 13.440190826698386}],
         'distance': 364,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 46',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50b7c7cbe4b08ce3c6bd56a8-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eaaf05c0aafb00bd8c13cda',
        'name': 'laksmi',
        'location': {'address': 'Wrangelstr.93',
         'lat': 52.49968545261818,
         'lng': 13.439424656593395,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49968545261818,
           'lng': 13.439424656593395}],
         'distance': 292,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr.93',
          'Berlin-Kreuzberg',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eaaf05c0aafb00bd8c13cda-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cd5643a67c7236ad5721277',
        'name': 'Passenger Espresso',
        'location': {'address': 'Oppelner Str. 45',
         'lat': 52.49991846280261,
         'lng': 13.441139459609984,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49991846280261,
           'lng': 13.441139459609984}],
         'distance': 390,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oppelner Str. 45',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cd5643a67c7236ad5721277-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c127e1477cea5939d26cd60',
        'name': 'Café Quitte',
        'location': {'address': 'Wiener Str. 62',
         'lat': 52.498255,
         'lng': 13.430397,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498255,
           'lng': 13.430397}],
         'distance': 459,
         'postalCode': '10999',
         'cc': 'DE',
         'neighborhood': 'Wiener Kiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener Str. 62',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c127e1477cea5939d26cd60-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ae98ce3fd16bb002c7e99b2',
        'name': 'Annelies',
        'location': {'address': 'Görlitzer Str. 68',
         'lat': 52.49844722656305,
         'lng': 13.434811065509907,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49844722656305,
           'lng': 13.434811065509907}],
         'distance': 278,
         'postalCode': '10997',
         'cc': 'DE',
         'neighborhood': 'Wrangelkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Görlitzer Str. 68',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ae98ce3fd16bb002c7e99b2-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af5de29f964a5200bfe21e3',
        'name': 'Nest',
        'location': {'address': 'Görlitzer Str. 52',
         'crossStreet': 'Oppelner Str.',
         'lat': 52.49712052755012,
         'lng': 13.439009234381851,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49712052755012,
           'lng': 13.439009234381851}],
         'distance': 479,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Görlitzer Str. 52 (Oppelner Str.)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '42413796'}},
       'referralId': 'e-0-4af5de29f964a5200bfe21e3-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e5977efb61c4aaa3dfe9c73',
        'name': 'Tante Emma',
        'location': {'address': 'Köpenicker Str. 1a',
         'lat': 52.50126087388172,
         'lng': 13.44167773616767,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50126087388172,
           'lng': 13.44167773616767}],
         'distance': 413,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Köpenicker Str. 1a',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e5977efb61c4aaa3dfe9c73-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55804640498e439bd0d0091e',
        'name': 'Estate Coffee',
        'location': {'address': 'Wrangelstr. 39',
         'lat': 52.500178952085236,
         'lng': 13.438254841572014,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500178952085236,
           'lng': 13.438254841572014}],
         'distance': 197,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 39',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55804640498e439bd0d0091e-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50474205e4b04aab883cc84c',
        'name': "Benito's",
        'location': {'address': 'Oppelner Str. 34',
         'lat': 52.498521,
         'lng': 13.439542,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498521,
           'lng': 13.439542}],
         'distance': 376,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oppelner Str. 34', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50474205e4b04aab883cc84c-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4a91ddfaf964a5202e1c20e3',
        'name': 'Sofia',
        'location': {'address': 'Wrangelstr. 93',
         'lat': 52.49965524242675,
         'lng': 13.439278756549548,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49965524242675,
           'lng': 13.439278756549548}],
         'distance': 285,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 93',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4a91ddfaf964a5202e1c20e3-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520b74621e3',
        'name': 'Tiki Heart',
        'location': {'address': 'Wiener Str. 20',
         'lat': 52.497649326232704,
         'lng': 13.431012628518316,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497649326232704,
           'lng': 13.431012628518316}],
         'distance': 477,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener Str. 20',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520b74621e3-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56bf5aa8cd108bebe04c5736',
        'name': 'Kaffesatz',
        'location': {'address': 'Wrangelstr. 43',
         'lat': 52.499561,
         'lng': 13.439445,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.499561,
           'lng': 13.439445}],
         'distance': 300,
         'postalCode': '10997',
         'cc': 'DE',
         'neighborhood': 'Wrangelkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 43',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56bf5aa8cd108bebe04c5736-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58a5a0a891936a79348bc9e3',
        'name': 'The Coffee Ape',
        'location': {'address': 'Skalitzer Strasse 82',
         'lat': 52.50068,
         'lng': 13.438828,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50068,
           'lng': 13.438828}],
         'distance': 220,
         'postalCode': '10967',
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Skalitzer Strasse 82', '10967', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58a5a0a891936a79348bc9e3-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5947a8ee65cdf867908f73e9',
        'name': 'People',
        'location': {'address': 'Eisenbahnstraße 4',
         'lat': 52.501793,
         'lng': 13.432256,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501793,
           'lng': 13.432256}],
         'distance': 247,
         'postalCode': '10997',
         'cc': 'DE',
         'neighborhood': 'Kreuzberg',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Eisenbahnstraße 4',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5947a8ee65cdf867908f73e9-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51ebfd11498e2f5b08ec097b',
        'name': "Dino's Bistro + Café",
        'location': {'address': 'Wrangelstr. 43',
         'lat': 52.49961083277039,
         'lng': 13.439392031750952,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49961083277039,
           'lng': 13.439392031750952}],
         'distance': 294,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 43',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51ebfd11498e2f5b08ec097b-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4db7e32493a04a7c307407a5',
        'name': 'Café Mon Cherie',
        'location': {'address': 'Köpenicker Straße 183',
         'lat': 52.50311081972456,
         'lng': 13.438043815890795,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50311081972456,
           'lng': 13.438043815890795}],
         'distance': 296,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Köpenicker Straße 183',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4db7e32493a04a7c307407a5-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58f74989826444722be57d99',
        'name': 'Kaffeesatz cafe Bar',
        'location': {'lat': 52.499487,
         'lng': 13.439626,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.499487,
           'lng': 13.439626}],
         'distance': 314,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58f74989826444722be57d99-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '552a1120498ecaf91090870c',
        'name': 'Zur süßen Ecke',
        'location': {'address': 'Wrangelstr. 21',
         'lat': 52.50274969611701,
         'lng': 13.431429862976074,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50274969611701,
           'lng': 13.431429862976074}],
         'distance': 349,
         'postalCode': '10977',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wrangelstr. 21',
          '10977 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-552a1120498ecaf91090870c-22'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f59334c670565cf455f'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Kreuzberg',
   'headerFullLocation': 'Kreuzberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 33,
   'suggestedBounds': {'ne': {'lat': 52.5014000045, 'lng': 13.433977743698824},
    'sw': {'lat': 52.492399995499994, 'lng': 13.419222256301177}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c127e1477cea5939d26cd60',
        'name': 'Café Quitte',
        'location': {'address': 'Wiener Str. 62',
         'lat': 52.498255,
         'lng': 13.430397,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498255,
           'lng': 13.430397}],
         'distance': 298,
         'postalCode': '10999',
         'cc': 'DE',
         'neighborhood': 'Wiener Kiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener Str. 62',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c127e1477cea5939d26cd60-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51d3f1e2498e15ad7aa4c00e',
        'name': 'Concierge Coffee',
        'location': {'address': 'Paul-Lincke-Ufer 39/40',
         'lat': 52.49607704120797,
         'lng': 13.422148954474327,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49607704120797,
           'lng': 13.422148954474327}],
         'distance': 315,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Lincke-Ufer 39/40',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51d3f1e2498e15ad7aa4c00e-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56c859ce498e4246a80cdaf0',
        'name': 'Populus Coffee',
        'location': {'address': 'Maybachufer 20',
         'crossStreet': 'Bürknerstr.',
         'lat': 52.493718,
         'lng': 13.427157,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493718,
           'lng': 13.427157}],
         'distance': 356,
         'postalCode': '12045',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 20 (Bürknerstr.)',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '559162275'}},
       'referralId': 'e-0-56c859ce498e4246a80cdaf0-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4caf8b96ef1b370408503300',
        'name': 'Café Mori',
        'location': {'address': 'Wiener Str. 13',
         'lat': 52.49858342772442,
         'lng': 13.428599492099389,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49858342772442,
           'lng': 13.428599492099389}],
         'distance': 231,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener Str. 13',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '35557669'}},
       'referralId': 'e-0-4caf8b96ef1b370408503300-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af49b4af964a52048f421e3',
        'name': 'Mano Cafe',
        'location': {'address': 'Skalitzer Str. 46A',
         'lat': 52.49912861276276,
         'lng': 13.430566300836764,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49912861276276,
           'lng': 13.430566300836764}],
         'distance': 365,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Skalitzer Str. 46A',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af49b4af964a52048f421e3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '537b5119498e3e9c9b7fff24',
        'name': 'Roka Bell',
        'location': {'lat': 52.495362052108916,
         'lng': 13.430104641745167,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.495362052108916,
           'lng': 13.430104641745167}],
         'distance': 292,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-537b5119498e3e9c9b7fff24-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5188b033498eaddd9b20d034',
        'name': 'pop kultur',
        'location': {'address': 'Paul-Lincke-Ufer 41',
         'lat': 52.496100744208995,
         'lng': 13.421816825866697,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496100744208995,
           'lng': 13.421816825866697}],
         'distance': 336,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Lincke-Ufer 41',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5188b033498eaddd9b20d034-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dd276db6365cd4836e36195',
        'name': "Katie's Blue Cat",
        'location': {'address': 'Friedelstr. 31',
         'lat': 52.49297512815172,
         'lng': 13.428254127502441,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49297512815172,
           'lng': 13.428254127502441}],
         'distance': 451,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 31',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dd276db6365cd4836e36195-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b90f5e0f964a520419c33e3',
        'name': 'Cutie Pie',
        'location': {'address': 'Lausitzer Str. 8',
         'lat': 52.49764345675097,
         'lng': 13.428971029274717,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49764345675097,
           'lng': 13.428971029274717}],
         'distance': 180,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lausitzer Str. 8',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b90f5e0f964a520419c33e3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adf5b50f964a520d37921e3',
        'name': 'Coffee Corner',
        'location': {'address': 'Kottbusser Damm 1',
         'lat': 52.495414,
         'lng': 13.420318,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.495414,
           'lng': 13.420318}],
         'distance': 456,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kottbusser Damm 1',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adf5b50f964a520d37921e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e538befcb604100083c7508',
        'name': 'Kitten',
        'location': {'address': 'Friedelstr. 30',
         'lat': 52.492876,
         'lng': 13.428354,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.492876,
           'lng': 13.428354}],
         'distance': 463,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 30',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e538befcb604100083c7508-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ccc1f21ad910e002c1da8b8',
        'name': 'La Maison',
        'location': {'address': 'Forster Str. 22',
         'crossStreet': 'Paul-Linke Ufer',
         'lat': 52.493341,
         'lng': 13.431117,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493341,
           'lng': 13.431117}],
         'distance': 500,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Forster Str. 22 (Paul-Linke Ufer)',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ccc1f21ad910e002c1da8b8-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a520984521e3',
        'name': 'Morgenland',
        'location': {'address': 'Skalitzer Str. 35',
         'lat': 52.498930498070465,
         'lng': 13.42591411356607,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.498930498070465,
           'lng': 13.42591411356607}],
         'distance': 230,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Skalitzer Str. 35',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a520984521e3-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '503dd222e4b0ae1ab4f5de84',
        'name': 'Kiezeklein',
        'location': {'address': 'Mariannenstr. 7',
         'crossStreet': 'Heinrichplatz',
         'lat': 52.50072571606996,
         'lng': 13.423410212142574,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50072571606996,
           'lng': 13.423410212142574}],
         'distance': 477,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Mariannenstr. 7 (Heinrichplatz)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-503dd222e4b0ae1ab4f5de84-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d5105e74015b1f725f96bcf',
        'name': 'Kaffeeladen Görlitzer Bahnhof',
        'location': {'address': 'Manteuffelstr. 87',
         'lat': 52.49976982525959,
         'lng': 13.42674474085117,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49976982525959,
           'lng': 13.42674474085117}],
         'distance': 319,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Manteuffelstr. 87',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d5105e74015b1f725f96bcf-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cd16d217f56a143853ad4a6',
        'name': 'Café Jenseits',
        'location': {'address': 'Oranienstr. 16',
         'lat': 52.500593,
         'lng': 13.422922,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.500593,
           'lng': 13.422922}],
         'distance': 480,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oranienstr. 16',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cd16d217f56a143853ad4a6-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '550ea3ba498e7aa1df5ddbdd',
        'name': 'Espresso Sin Fronteras',
        'location': {'address': 'Maybachufer 21',
         'lat': 52.493724553821195,
         'lng': 13.427544146058958,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493724553821195,
           'lng': 13.427544146058958}],
         'distance': 359,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 21', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-550ea3ba498e7aa1df5ddbdd-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '559501fd498e77577361c4be',
        'name': 'Bar Kaffeepur',
        'location': {'lat': 52.49628071065569,
         'lng': 13.420604260935662,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49628071065569,
           'lng': 13.420604260935662}],
         'distance': 412,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-559501fd498e77577361c4be-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d9b1b48674ca1432684ca43',
        'name': "D'Espresso",
        'location': {'address': 'Manteuffelstr. 100',
         'crossStreet': 'Waldemarstr.',
         'lat': 52.50119942706753,
         'lng': 13.42821104424064,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50119942706753,
           'lng': 13.42821104424064}],
         'distance': 490,
         'postalCode': '10997',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Manteuffelstr. 100 (Waldemarstr.)',
          '10997 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d9b1b48674ca1432684ca43-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b129449f964a520018b23e3',
        'name': 'Pfeiffers',
        'location': {'address': 'Oranienstr. 17',
         'lat': 52.50041791681981,
         'lng': 13.42288805400447,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50041791681981,
           'lng': 13.42288805400447}],
         'distance': 465,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oranienstr. 17',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b129449f964a520018b23e3-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda79f964a520b74621e3',
        'name': 'Tiki Heart',
        'location': {'address': 'Wiener Str. 20',
         'lat': 52.497649326232704,
         'lng': 13.431012628518316,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497649326232704,
           'lng': 13.431012628518316}],
         'distance': 310,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiener Str. 20',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda79f964a520b74621e3-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5831956f9b615c4920ffeb19',
        'name': 'Kreuz Kaffee',
        'location': {'address': 'Ohlauer Straße 41',
         'lat': 52.494430339403344,
         'lng': 13.42912644724232,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494430339403344,
           'lng': 13.42912644724232}],
         'distance': 323,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ohlauer Straße 41',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5831956f9b615c4920ffeb19-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a520074621e3',
        'name': 'Bâteau Ivre',
        'location': {'address': 'Oranienstr. 18',
         'crossStreet': 'Heinrichplatz',
         'lat': 52.50046055849627,
         'lng': 13.422589302062988,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50046055849627,
           'lng': 13.422589302062988}],
         'distance': 480,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oranienstr. 18 (Heinrichplatz)',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a520074621e3-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eb51ef44901cef9d861dd68',
        'name': 'Weincafe Wanderbühne',
        'location': {'lat': 52.49276617937026,
         'lng': 13.427946149616323,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49276617937026,
           'lng': 13.427946149616323}],
         'distance': 469,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eb51ef44901cef9d861dd68-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51f6598a498e177733cba9ed',
        'name': 'Key',
        'location': {'address': 'Manteuffelstr. 52',
         'lat': 52.497677337372316,
         'lng': 13.42489203229572,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.497677337372316,
           'lng': 13.42489203229572}],
         'distance': 144,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Manteuffelstr. 52',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51f6598a498e177733cba9ed-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c161119a5eb76b0c529c4b7',
        'name': 'Regenbogen Café',
        'location': {'address': 'Lausitzer Str. 22 a',
         'lat': 52.49553345,
         'lng': 13.42719,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49553345,
           'lng': 13.42719}],
         'distance': 157,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lausitzer Str. 22 a',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c161119a5eb76b0c529c4b7-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cf7734b9d11b1f76718c6ed',
        'name': 'Zik Orangerie',
        'location': {'address': 'Reichenberger Str. 129',
         'lat': 52.49564100033031,
         'lng': 13.430263866337224,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49564100033031,
           'lng': 13.430263866337224}],
         'distance': 285,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reichenberger Str. 129',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cf7734b9d11b1f76718c6ed-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5dd14f661169e90007b37a0c',
        'name': 'Tatasbln',
        'location': {'lat': 52.494797,
         'lng': 13.424005,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494797,
           'lng': 13.424005}],
         'distance': 292,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '591013550'}},
       'referralId': 'e-0-5dd14f661169e90007b37a0c-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51acc4db498ed0297aab54f3',
        'name': 'Café & Bäckerei am Markt',
        'location': {'address': 'Maybachufer 1',
         'lat': 52.495526207452656,
         'lng': 13.420722134614712,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.495526207452656,
           'lng': 13.420722134614712}],
         'distance': 426,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 1', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51acc4db498ed0297aab54f3-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc53c19b0fb5556ccea806f',
        'name': 'Cafecito',
        'location': {'address': 'Maybachufer 21',
         'lat': 52.49363815618353,
         'lng': 13.427331447601318,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49363815618353,
           'lng': 13.427331447601318}],
         'distance': 366,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 21',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc53c19b0fb5556ccea806f-29'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4deb4e17e4cdc079f49add8c',
        'name': 'Hertz',
        'location': {'address': 'Paul-Lincke-Ufer 22',
         'lat': 52.49391115621415,
         'lng': 13.428864077198787,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49391115621415,
           'lng': 13.428864077198787}],
         'distance': 366,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Lincke-Ufer 22',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4deb4e17e4cdc079f49add8c-30'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '591ed01c0d8a0f04db16f56d',
        'name': 'Kaffee am Markt',
        'location': {'lat': 52.49548,
         'lng': 13.420904,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49548,
           'lng': 13.420904}],
         'distance': 417,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-591ed01c0d8a0f04db16f56d-31'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '509689b6e4b0b6c7185584c6',
        'name': 'Marianna',
        'location': {'address': 'Paul-Lincke-Ufer 45',
         'crossStreet': 'Mariannenstraße',
         'lat': 52.496347566938574,
         'lng': 13.420206230712077,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.496347566938574,
           'lng': 13.420206230712077}],
         'distance': 437,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Lincke-Ufer 45 (Mariannenstraße)',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-509689b6e4b0b6c7185584c6-32'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5af2dca11a89db4e48'},
  'response': {'headerLocation': 'Dorotheenstadt',
   'headerFullLocation': 'Dorotheenstadt, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.5224000045, 'lng': 13.383281269514978},
    'sw': {'lat': 52.513399995499995, 'lng': 13.368518730485022}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b13e4b9f964a520399a23e3',
        'name': 'Starbucks',
        'location': {'address': 'PARISER PLATZ 4A',
         'lat': 52.51678544918839,
         'lng': 13.379765924719646,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51678544918839,
           'lng': 13.379765924719646}],
         'distance': 289,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['PARISER PLATZ 4A',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b13e4b9f964a520399a23e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda75f964a5208d4521e3',
        'name': 'Café Lebensart',
        'location': {'address': 'Unter den Linden 69 a+b',
         'lat': 52.516444888842784,
         'lng': 13.382149652830892,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516444888842784,
           'lng': 13.382149652830892}],
         'distance': 453,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 69 a+b',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda75f964a5208d4521e3-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '595a5dd2123a195de61065a3',
        'name': 'Adlon To Go',
        'location': {'address': 'Unter den Linden 77',
         'lat': 52.516394810896614,
         'lng': 13.380242805872006,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516394810896614,
           'lng': 13.380242805872006}],
         'distance': 338,
         'postalCode': '10117',
         'cc': 'DE',
         'neighborhood': 'Unter den Linden',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 77',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-595a5dd2123a195de61065a3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '525fc66411d287fa97cde91c',
        'name': 'Coffee To Go',
        'location': {'lat': 52.515303447101,
         'lng': 13.380033470518079,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.515303447101,
           'lng': 13.380033470518079}],
         'distance': 402,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-525fc66411d287fa97cde91c-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5ac656a10ca6aafc18'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Karl-Marx-Straße',
   'headerFullLocation': 'Karl-Marx-Straße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 14,
   'suggestedBounds': {'ne': {'lat': 52.4844000045, 'lng': 13.444474892658143},
    'sw': {'lat': 52.4753999955, 'lng': 13.42972510734186}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54327512498e648f00ca0f3b',
        'name': 'Caffeggiando',
        'location': {'address': 'Anzengruberstr. 19',
         'lat': 52.48067603707893,
         'lng': 13.440000066387604,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48067603707893,
           'lng': 13.440000066387604}],
         'distance': 214,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Anzengruberstr. 19',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54327512498e648f00ca0f3b-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '526b9c4e11d2ef13bf80f997',
        'name': 'Prachtwerk',
        'location': {'address': 'Ganghoferstr. 2',
         'lat': 52.47907980698503,
         'lng': 13.438402686454733,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47907980698503,
           'lng': 13.438402686454733}],
         'distance': 127,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ganghoferstr. 2',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-526b9c4e11d2ef13bf80f997-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '536b6592498eafda5caef40f',
        'name': 'Rixbox',
        'location': {'address': 'Richardstr. 2',
         'crossStreet': 'Alfred-Scholz-Platz',
         'lat': 52.479005733519294,
         'lng': 13.43779279156502,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.479005733519294,
           'lng': 13.43779279156502}],
         'distance': 110,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardstr. 2 (Alfred-Scholz-Platz)',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-536b6592498eafda5caef40f-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5217309f498e84315daee9cb',
        'name': 'Café Botanico',
        'location': {'address': 'Richardstr. 100',
         'lat': 52.47731595457574,
         'lng': 13.441248048118089,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47731595457574,
           'lng': 13.441248048118089}],
         'distance': 402,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardstr. 100',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5217309f498e84315daee9cb-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e5948e81495a891127d0965',
        'name': 'Elit Simit',
        'location': {'address': 'Karl-Marx-Str. 109',
         'lat': 52.47860230113104,
         'lng': 13.43765104721109,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47860230113104,
           'lng': 13.43765104721109}],
         'distance': 149,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Marx-Str. 109',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e5948e81495a891127d0965-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59f9baea8c812a14a8bf4ad7',
        'name': 'Holy Coffee',
        'location': {'address': 'Sonnenallee 132',
         'crossStreet': 'Geygerstr.',
         'lat': 52.479833459184675,
         'lng': 13.443649838260455,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.479833459184675,
           'lng': 13.443649838260455}],
         'distance': 444,
         'postalCode': '12059',
         'cc': 'DE',
         'neighborhood': 'Neukölln',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sonnenallee 132 (Geygerstr.)',
          '12059 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59f9baea8c812a14a8bf4ad7-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b59be3dacb00b0039966cb3',
        'name': 'Companion Tea & Coffee',
        'location': {'address': 'Weserstraße 166',
         'lat': 52.48331723887731,
         'lng': 13.441134981212718,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48331723887731,
           'lng': 13.441134981212718}],
         'distance': 468,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße 166', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b59be3dacb00b0039966cb3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f9996cde4b03f9bd5691bfc',
        'name': 'k-fetisch',
        'location': {'address': 'Wildenbruchstr. 86',
         'crossStreet': 'Weserstr.',
         'lat': 52.483061135065896,
         'lng': 13.441773605013086,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.483061135065896,
           'lng': 13.441773605013086}],
         'distance': 473,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wildenbruchstr. 86 (Weserstr.)',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f9996cde4b03f9bd5691bfc-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5038bae6e4b0218ac2120161',
        'name': 'Café Ole',
        'location': {'address': 'Boddinstr. 57',
         'lat': 52.48061113156666,
         'lng': 13.431551190451929,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48061113156666,
           'lng': 13.431551190451929}],
         'distance': 384,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Boddinstr. 57', '12053 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5038bae6e4b0218ac2120161-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a5200a4621e3',
        'name': 'Café Rix',
        'location': {'address': 'Karl-Marx-Str. 141',
         'lat': 52.47696,
         'lng': 13.439365,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47696,
           'lng': 13.439365}],
         'distance': 361,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Marx-Str. 141',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a5200a4621e3-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bdee8fada7080002c63c25d',
        'name': 'Cafe Babette',
        'location': {'address': 'Am Sudhaus 3',
         'lat': 52.479363,
         'lng': 13.43121,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.479363,
           'lng': 13.43121}],
         'distance': 403,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Sudhaus 3', '12053 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5bdee8fada7080002c63c25d-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bc0a2792619ee002c2542e9',
        'name': 'VENUE Restaurant',
        'location': {'address': 'Weserstraße 172',
         'lat': 52.484062,
         'lng': 13.439475,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.484062,
           'lng': 13.439475}],
         'distance': 490,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße 172',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5bc0a2792619ee002c2542e9-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54f19681498eb6208a22c418',
        'name': 'Café Evim',
        'location': {'address': 'Richardstr. 109',
         'lat': 52.478322,
         'lng': 13.438919,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.478322,
           'lng': 13.438919}],
         'distance': 214,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardstr. 109',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54f19681498eb6208a22c418-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59ed9bdc31fd141cd4c78092',
        'name': "Gregory's",
        'location': {'address': 'Karl-Marx-Str. 66',
         'lat': 52.482057,
         'lng': 13.432887,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.482057,
           'lng': 13.432887}],
         'distance': 373,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Marx-Str. 66', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59ed9bdc31fd141cd4c78092-13'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5aa5421e17ccecc19f'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Reuterkiez',
   'headerFullLocation': 'Reuterkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 12,
   'suggestedBounds': {'ne': {'lat': 52.490000004500004,
     'lng': 13.446575831509362},
    'sw': {'lat': 52.4809999955, 'lng': 13.431824168490637}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b59be3dacb00b0039966cb3',
        'name': 'Companion Tea & Coffee',
        'location': {'address': 'Weserstraße 166',
         'lat': 52.48331723887731,
         'lng': 13.441134981212718,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48331723887731,
           'lng': 13.441134981212718}],
         'distance': 276,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße 166', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b59be3dacb00b0039966cb3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f9996cde4b03f9bd5691bfc',
        'name': 'k-fetisch',
        'location': {'address': 'Wildenbruchstr. 86',
         'crossStreet': 'Weserstr.',
         'lat': 52.483061135065896,
         'lng': 13.441773605013086,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.483061135065896,
           'lng': 13.441773605013086}],
         'distance': 322,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wildenbruchstr. 86 (Weserstr.)',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f9996cde4b03f9bd5691bfc-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54fc4bbb498eb438259ae48e',
        'name': 'Dots',
        'location': {'address': 'Weserstr. 191',
         'lat': 52.486378631227396,
         'lng': 13.434567644415887,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486378631227396,
           'lng': 13.434567644415887}],
         'distance': 328,
         'postalCode': '10245',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstr. 191', '10245 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54fc4bbb498eb438259ae48e-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b17fdfff964a52003cb23e3',
        'name': 'Zimt & Mehl Manufaktur',
        'location': {'address': 'Weigandufer 16',
         'lat': 52.48473361104862,
         'lng': 13.44414627157973,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48473361104862,
           'lng': 13.44414627157973}],
         'distance': 345,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weigandufer 16',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b17fdfff964a52003cb23e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5172aa01e4b0ffeb8bde5a59',
        'name': 'Missis Miller',
        'location': {'address': 'Weichselstr. 35',
         'lat': 52.488730133840875,
         'lng': 13.439044970689638,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.488730133840875,
           'lng': 13.439044970689638}],
         'distance': 359,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weichselstr. 35',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5172aa01e4b0ffeb8bde5a59-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '594fce081bc70421e14376c2',
        'name': 'hom',
        'location': {'address': 'Wildenbruchplatz 5',
         'lat': 52.483472,
         'lng': 13.444547,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.483472,
           'lng': 13.444547}],
         'distance': 427,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wildenbruchplatz 5',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-594fce081bc70421e14376c2-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b200090f964a520fb2b24e3',
        'name': 'Broschek',
        'location': {'address': 'Weichselstr. 6',
         'lat': 52.48415184245284,
         'lng': 13.432774434116919,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48415184245284,
           'lng': 13.432774434116919}],
         'distance': 460,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weichselstr. 6',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b200090f964a520fb2b24e3-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bc0a2792619ee002c2542e9',
        'name': 'VENUE Restaurant',
        'location': {'address': 'Weserstraße 172',
         'lat': 52.484062,
         'lng': 13.439475,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.484062,
           'lng': 13.439475}],
         'distance': 161,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße 172',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5bc0a2792619ee002c2542e9-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54080c76498eef5e68d5b17f',
        'name': 'The Coffee Ape',
        'location': {'address': 'Sonnenallee 51',
         'lat': 52.48506844265226,
         'lng': 13.43297423864497,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48506844265226,
           'lng': 13.43297423864497}],
         'distance': 424,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sonnenallee 51',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54080c76498eef5e68d5b17f-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c6bfc541fb2a143fd23fae6',
        'name': 'Rudimarie',
        'location': {'address': 'Weichselstr. 34',
         'lat': 52.48894669630567,
         'lng': 13.438977133841703,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48894669630567,
           'lng': 13.438977133841703}],
         'distance': 383,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weichselstr. 34',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c6bfc541fb2a143fd23fae6-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5db44ed1d628da00083a6949',
        'name': 'Greens Café',
        'location': {'address': 'Weserst. 44',
         'lat': 52.484573,
         'lng': 13.4380245,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.484573,
           'lng': 13.4380245}],
         'distance': 130,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserst. 44', '12045 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5db44ed1d628da00083a6949-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f425ad6e4b0c868df7fcc9c',
        'name': 'Shio',
        'location': {'address': 'Weichselstr. 59',
         'lat': 52.485107525339885,
         'lng': 13.43369566431051,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.485107525339885,
           'lng': 13.43369566431051}],
         'distance': 375,
         'postalCode': '12045',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weichselstr. 59',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '43126053'}},
       'referralId': 'e-0-4f425ad6e4b0c868df7fcc9c-11'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5b83e39e1eddb0d887'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Reuterkiez',
   'headerFullLocation': 'Reuterkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 32,
   'suggestedBounds': {'ne': {'lat': 52.4950000045, 'lng': 13.43587667003095},
    'sw': {'lat': 52.485999995499995, 'lng': 13.421123329969049}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e218c97b61cdcf1ecbe46d8',
        'name': 'Myxa Café',
        'location': {'address': 'Lenaustr. 22',
         'lat': 52.49019903713692,
         'lng': 13.42674436161043,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49019903713692,
           'lng': 13.42674436161043}],
         'distance': 123,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lenaustr. 22', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '33403108'}},
       'referralId': 'e-0-4e218c97b61cdcf1ecbe46d8-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56f66920498e940834a0bb86',
        'name': 'Okay Café',
        'location': {'address': 'Pflügerstr. 68',
         'lat': 52.491497,
         'lng': 13.428382,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.491497,
           'lng': 13.428382}],
         'distance': 111,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pflügerstr. 68',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56f66920498e940834a0bb86-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5762cb90498e3b6a9247ed37',
        'name': 'bRICK',
        'location': {'address': 'Lenaustr. 1',
         'crossStreet': 'Kottbusser Damm',
         'lat': 52.489939,
         'lng': 13.424577,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.489939,
           'lng': 13.424577}],
         'distance': 273,
         'postalCode': '12047',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lenaustr. 1 (Kottbusser Damm)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '459649104'}},
       'referralId': 'e-0-5762cb90498e3b6a9247ed37-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dd276db6365cd4836e36195',
        'name': "Katie's Blue Cat",
        'location': {'address': 'Friedelstr. 31',
         'lat': 52.49297512815172,
         'lng': 13.428254127502441,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49297512815172,
           'lng': 13.428254127502441}],
         'distance': 276,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 31',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dd276db6365cd4836e36195-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51bdadb3498e8d6f8080f1a7',
        'name': 'Barettino',
        'location': {'address': 'Reuterstraße 59',
         'crossStreet': 'Weserstraße',
         'lat': 52.487862271811025,
         'lng': 13.429088563777132,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.487862271811025,
           'lng': 13.429088563777132}],
         'distance': 296,
         'postalCode': '12047',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reuterstraße 59 (Weserstraße)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51bdadb3498e8d6f8080f1a7-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eb28819f9f43874814e80fe',
        'name': "Bully's Bakery",
        'location': {'address': 'Friedelstr. 7',
         'crossStreet': 'Weserstr.',
         'lat': 52.48832692687704,
         'lng': 13.428114602491275,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48832692687704,
           'lng': 13.428114602491275}],
         'distance': 243,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 7 (Weserstr.)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '77920829'}},
       'referralId': 'e-0-4eb28819f9f43874814e80fe-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e538befcb604100083c7508',
        'name': 'Kitten',
        'location': {'address': 'Friedelstr. 30',
         'lat': 52.492876,
         'lng': 13.428354,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.492876,
           'lng': 13.428354}],
         'distance': 264,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 30',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e538befcb604100083c7508-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56c859ce498e4246a80cdaf0',
        'name': 'Populus Coffee',
        'location': {'address': 'Maybachufer 20',
         'crossStreet': 'Bürknerstr.',
         'lat': 52.493718,
         'lng': 13.427157,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493718,
           'lng': 13.427157}],
         'distance': 369,
         'postalCode': '12045',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 20 (Bürknerstr.)',
          '12045 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '559162275'}},
       'referralId': 'e-0-56c859ce498e4246a80cdaf0-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ff9bdc9e4b0956dd6304cfe',
        'name': 'Tischendorf',
        'location': {'address': 'Friedelstr. 25',
         'lat': 52.49206917265938,
         'lng': 13.427981954066674,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49206917265938,
           'lng': 13.427981954066674}],
         'distance': 178,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 25',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ff9bdc9e4b0956dd6304cfe-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '514efa17e4b0fff03703923f',
        'name': "café a'lu",
        'location': {'address': 'Nansenstr. 3',
         'crossStreet': 'Reuterplatz',
         'lat': 52.48857170941257,
         'lng': 13.429831278594518,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48857170941257,
           'lng': 13.429831278594518}],
         'distance': 232,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Nansenstr. 3 (Reuterplatz)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-514efa17e4b0fff03703923f-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c332f30213c2d7fee7a365d',
        'name': 'La Femme',
        'location': {'address': 'Kottbusser Damm 77',
         'crossStreet': 'Pflügerstr.',
         'lat': 52.490939737012106,
         'lng': 13.423513063950589,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490939737012106,
           'lng': 13.423513063950589}],
         'distance': 341,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kottbusser Damm 77 (Pflügerstr.)',
          '10967 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c332f30213c2d7fee7a365d-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ccc1f21ad910e002c1da8b8',
        'name': 'La Maison',
        'location': {'address': 'Forster Str. 22',
         'crossStreet': 'Paul-Linke Ufer',
         'lat': 52.493341,
         'lng': 13.431117,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493341,
           'lng': 13.431117}],
         'distance': 362,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Forster Str. 22 (Paul-Linke Ufer)',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ccc1f21ad910e002c1da8b8-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5f536726ef76153d7f9857ef',
        'name': 'Sorrel',
        'location': {'address': 'Pannierstraße 40',
         'crossStreet': 'Pflügerstraße',
         'lat': 52.490065,
         'lng': 13.433829,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490065,
           'lng': 13.433829}],
         'distance': 364,
         'postalCode': '12047',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pannierstraße 40 (Pflügerstraße)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5f536726ef76153d7f9857ef-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50cdf709e4b046175cc99d86',
        'name': 'two and two',
        'location': {'address': 'Pannierstr. 6',
         'lat': 52.48671275741426,
         'lng': 13.430849898498758,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48671275741426,
           'lng': 13.430849898498758}],
         'distance': 450,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pannierstr. 6', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50cdf709e4b046175cc99d86-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bb49c22db1d81002cff1cf0',
        'name': 'The Barn Neukölln',
        'location': {'address': 'Friedelstr. 27',
         'crossStreet': 'Sanderstr.',
         'lat': 52.4924066782112,
         'lng': 13.428040665723463,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4924066782112,
           'lng': 13.428040665723463}],
         'distance': 214,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 27 (Sanderstr.)',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5bb49c22db1d81002cff1cf0-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5618df7d498e89360d919fc6',
        'name': 'CAMON Coffee',
        'location': {'address': 'Sonnenallee 27',
         'lat': 52.486457277525204,
         'lng': 13.429397444207641,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.486457277525204,
           'lng': 13.429397444207641}],
         'distance': 454,
         'postalCode': '12047',
         'cc': 'DE',
         'neighborhood': 'Reuterkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sonnenallee 27',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5618df7d498e89360d919fc6-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53a6af42498e192ea71767d8',
        'name': 'Ein Laden',
        'location': {'address': 'Weserstraße',
         'lat': 52.48812940186354,
         'lng': 13.42969758345258,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48812940186354,
           'lng': 13.42969758345258}],
         'distance': 276,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstraße', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53a6af42498e192ea71767d8-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eb51ef44901cef9d861dd68',
        'name': 'Weincafe Wanderbühne',
        'location': {'lat': 52.49276617937026,
         'lng': 13.427946149616323,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49276617937026,
           'lng': 13.427946149616323}],
         'distance': 255,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eb51ef44901cef9d861dd68-17'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '550ea3ba498e7aa1df5ddbdd',
        'name': 'Espresso Sin Fronteras',
        'location': {'address': 'Maybachufer 21',
         'lat': 52.493724553821195,
         'lng': 13.427544146058958,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.493724553821195,
           'lng': 13.427544146058958}],
         'distance': 364,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 21', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-550ea3ba498e7aa1df5ddbdd-18'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51ee48c1498e2adce4998ff7',
        'name': 'The Coffee Ape',
        'location': {'address': 'Hermannplatz',
         'lat': 52.48669,
         'lng': 13.424662,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48669,
           'lng': 13.424662}],
         'distance': 497,
         'postalCode': '10967',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermannplatz', '10967 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51ee48c1498e2adce4998ff7-19'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52a4824811d25cafc065cb21',
        'name': 'Café Katulki',
        'location': {'address': 'Friedelstr. 40',
         'lat': 52.491855,
         'lng': 13.427637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.491855,
           'lng': 13.427637}],
         'distance': 161,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Friedelstr. 40',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52a4824811d25cafc065cb21-20'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b1e717df964a520051a24e3',
        'name': 'Cafe Futuro',
        'location': {'address': 'Pannierstr. 12',
         'lat': 52.487957422581935,
         'lng': 13.432049486195481,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.487957422581935,
           'lng': 13.432049486195481}],
         'distance': 371,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pannierstr. 12',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '56515887'}},
       'referralId': 'e-0-4b1e717df964a520051a24e3-21'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b028c31f964a520e64822e3',
        'name': 'Goldberg',
        'location': {'address': 'Reuterstr. 40',
         'lat': 52.49125694584663,
         'lng': 13.429297310406342,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49125694584663,
           'lng': 13.429297310406342}],
         'distance': 100,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reuterstr. 40', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b028c31f964a520e64822e3-22'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5831956f9b615c4920ffeb19',
        'name': 'Kreuz Kaffee',
        'location': {'address': 'Ohlauer Straße 41',
         'lat': 52.494430339403344,
         'lng': 13.42912644724232,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.494430339403344,
           'lng': 13.42912644724232}],
         'distance': 439,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ohlauer Straße 41',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5831956f9b615c4920ffeb19-23'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c3847f1ae2da593c46700c6',
        'name': 'Klötze und Schinken',
        'location': {'address': 'Bürknerstr. 12',
         'lat': 52.4930361858127,
         'lng': 13.422799587639616,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4930361858127,
           'lng': 13.422799587639616}],
         'distance': 478,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bürknerstr. 12',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c3847f1ae2da593c46700c6-24'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d944ed058caa1430254a725',
        'name': 'Schaumschläger',
        'location': {'address': 'Hobrechtstr. 11',
         'lat': 52.48751209477546,
         'lng': 13.426497948588214,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48751209477546,
           'lng': 13.426497948588214}],
         'distance': 359,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hobrechtstr. 11',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d944ed058caa1430254a725-25'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50cc47e5e4b0fb9326d31540',
        'name': 'Le Johann Rose Café',
        'location': {'address': 'Pannierstr. 41',
         'lat': 52.48992876585931,
         'lng': 13.433736726349556,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48992876585931,
           'lng': 13.433736726349556}],
         'distance': 360,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Pannierstr. 41',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50cc47e5e4b0fb9326d31540-26'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f784c99e4b06ff836f85b6b',
        'name': 'Grünstich',
        'location': {'address': 'Reuterstr. 36',
         'lat': 52.490328,
         'lng': 13.42894,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.490328,
           'lng': 13.42894}],
         'distance': 35,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reuterstr. 36', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f784c99e4b06ff836f85b6b-27'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56261e56498e3d52ca96ddbf',
        'name': 'Rooftop Refugio',
        'location': {'address': 'Lenau Str 4',
         'lat': 52.489951,
         'lng': 13.425285,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.489951,
           'lng': 13.425285}],
         'distance': 226,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lenau Str 4', '12047 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56261e56498e3d52ca96ddbf-28'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc53c19b0fb5556ccea806f',
        'name': 'Cafecito',
        'location': {'address': 'Maybachufer 21',
         'lat': 52.49363815618353,
         'lng': 13.427331447601318,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49363815618353,
           'lng': 13.427331447601318}],
         'distance': 358,
         'postalCode': '12047',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Maybachufer 21',
          '12047 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc53c19b0fb5556ccea806f-29'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4deb4e17e4cdc079f49add8c',
        'name': 'Hertz',
        'location': {'address': 'Paul-Lincke-Ufer 22',
         'lat': 52.49391115621415,
         'lng': 13.428864077198787,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.49391115621415,
           'lng': 13.428864077198787}],
         'distance': 380,
         'postalCode': '10999',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Lincke-Ufer 22',
          '10999 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4deb4e17e4cdc079f49add8c-30'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '538b3992498ef93b52fc0380',
        'name': 'Musikcafé Fili',
        'location': {'lat': 52.48634040648107,
         'lng': 13.430735410442608,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48634040648107,
           'lng': 13.430735410442608}],
         'distance': 487,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-538b3992498ef93b52fc0380-31'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5bc656a10ca6ab0177'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Schillerkiez',
   'headerFullLocation': 'Schillerkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 12,
   'suggestedBounds': {'ne': {'lat': 52.4809000045, 'lng': 13.429374306033262},
    'sw': {'lat': 52.471899995499996, 'lng': 13.41462569396674}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53a6ef81498e56d9917b270b',
        'name': 'Lux',
        'location': {'address': 'Herfurthstr. 9',
         'lat': 52.47722553179799,
         'lng': 13.423214181094338,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47722553179799,
           'lng': 13.423214181094338}],
         'distance': 123,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Herfurthstr. 9',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53a6ef81498e56d9917b270b-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '579c577a498e2db2e1537e08',
        'name': 'Isla Coffee Berlin',
        'location': {'address': 'Hermannstr. 37',
         'lat': 52.48033594219699,
         'lng': 13.425168639130929,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48033594219699,
           'lng': 13.425168639130929}],
         'distance': 487,
         'postalCode': '12049',
         'cc': 'DE',
         'neighborhood': 'Schillerkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermannstr. 37',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-579c577a498e2db2e1537e08-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59d8eb62a8eb606df9d2e5e7',
        'name': 'Mahlo Brunch Bar',
        'location': {'address': '32 Mahlower Strasse',
         'lat': 52.48002419121935,
         'lng': 13.424925568583536,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48002419121935,
           'lng': 13.424925568583536}],
         'distance': 449,
         'postalCode': '12049',
         'cc': 'DE',
         'neighborhood': 'Schillerkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['32 Mahlower Strasse',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59d8eb62a8eb606df9d2e5e7-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4df9bfb5d4c064db03a9ff3b',
        'name': 'Pappelreihe Cafe',
        'location': {'address': 'Kienitzer Str. 109',
         'crossStreet': 'Weisestr.',
         'lat': 52.47576168894994,
         'lng': 13.423618495419756,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47576168894994,
           'lng': 13.423618495419756}],
         'distance': 130,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kienitzer Str. 109 (Weisestr.)',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4df9bfb5d4c064db03a9ff3b-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52d2bd6e498eba87f31b8200',
        'name': 'Aviatrix',
        'location': {'address': 'Herrfurthstr. 13',
         'lat': 52.47687190463942,
         'lng': 13.419886865809024,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47687190463942,
           'lng': 13.419886865809024}],
         'distance': 152,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Herrfurthstr. 13',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52d2bd6e498eba87f31b8200-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5205fe8111d2ad7f336a03e7',
        'name': 'Café Kanel',
        'location': {'address': 'Schillerpromenade 25',
         'lat': 52.473605853002816,
         'lng': 13.423257604739817,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.473605853002816,
           'lng': 13.423257604739817}],
         'distance': 322,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schillerpromenade 25',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5205fe8111d2ad7f336a03e7-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5208b69f11d2a646c71dfacb',
        'name': 'Caramina',
        'location': {'address': 'Herrfurthstr 10',
         'lat': 52.47697901922109,
         'lng': 13.420918319913316,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47697901922109,
           'lng': 13.420918319913316}],
         'distance': 97,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Herrfurthstr 10',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5208b69f11d2a646c71dfacb-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55d9c736498e2156fdb274f8',
        'name': 'Le Renard',
        'location': {'lat': 52.47748056706405,
         'lng': 13.422056008046786,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47748056706405,
           'lng': 13.422056008046786}],
         'distance': 120,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55d9c736498e2156fdb274f8-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f3019d5e4b01982f3bd5666',
        'name': "Sultan's",
        'location': {'address': 'Leykestr. 1',
         'crossStreet': 'Hermannstr.',
         'lat': 52.47466529948211,
         'lng': 13.427552714318438,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47466529948211,
           'lng': 13.427552714318438}],
         'distance': 423,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leykestr. 1 (Hermannstr.)',
          '12053 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f3019d5e4b01982f3bd5666-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e2d8fc1f51f800008e5c5a6',
        'name': 'Kaffeeraum Zazza Roastery',
        'location': {'lat': 52.477303,
         'lng': 13.423698,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.477303,
           'lng': 13.423698}],
         'distance': 152,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['12049 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e2d8fc1f51f800008e5c5a6-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50c7144ce4b010a7bb1d9648',
        'name': 'Feed Café',
        'location': {'address': 'Weisestr 49',
         'lat': 52.476698196533526,
         'lng': 13.424124975869193,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.476698196533526,
           'lng': 13.424124975869193}],
         'distance': 147,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weisestr 49', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50c7144ce4b010a7bb1d9648-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5099ffa0e4b0314c351f8cc7',
        'name': 'İstanbul Bäckerei Konditorei',
        'location': {'address': 'Hermannstr. 69',
         'lat': 52.47463960623943,
         'lng': 13.427517339412773,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47463960623943,
           'lng': 13.427517339412773}],
         'distance': 422,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermannstr. 69',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5099ffa0e4b0314c351f8cc7-11'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5c71cf843322f3c55e'},
  'response': {'headerLocation': 'Schillerkiez',
   'headerFullLocation': 'Schillerkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.471400004500005,
     'lng': 13.437172714374714},
    'sw': {'lat': 52.4623999955, 'lng': 13.422427285625286}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e1333b7814d60ce660627e1',
        'name': 'leuchtstoff - Kaffeebar',
        'location': {'address': 'Siegfriedstr. 19',
         'lat': 52.46806531750529,
         'lng': 13.432528064706222,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46806531750529,
           'lng': 13.432528064706222}],
         'distance': 225,
         'postalCode': '12051',
         'cc': 'DE',
         'neighborhood': 'Neukölln',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Siegfriedstr. 19',
          '12051 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '45166827'}},
       'referralId': 'e-0-4e1333b7814d60ce660627e1-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50fc4395e4b084af5edb832e',
        'name': 'Loislane',
        'location': {'address': 'Emser Str. 41',
         'lat': 52.46838972518222,
         'lng': 13.429575297576891,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46838972518222,
           'lng': 13.429575297576891}],
         'distance': 166,
         'postalCode': '12051',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Emser Str. 41', '12051 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50fc4395e4b084af5edb832e-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '552f6482498ea9b85f2e31f5',
        'name': 'Coffee & Deli',
        'location': {'address': 'Hermannstr. 164',
         'crossStreet': 'Nogatstr.',
         'lat': 52.469377235216726,
         'lng': 13.430437445640564,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.469377235216726,
           'lng': 13.430437445640564}],
         'distance': 279,
         'postalCode': '12051',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermannstr. 164 (Nogatstr.)',
          '12051 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-552f6482498ea9b85f2e31f5-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d570fe5611aa35dcc514939',
        'name': 'Ungeheuer Neukölln',
        'location': {'address': 'Emser Str. 23',
         'lat': 52.4690381331751,
         'lng': 13.434946875189306,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4690381331751,
           'lng': 13.434946875189306}],
         'distance': 422,
         'postalCode': '12051',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Emser Str. 23', '12051 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d570fe5611aa35dcc514939-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5541cf0b498e6fb1ed95f579',
        'name': 'Roasters',
        'location': {'address': 'Hermannstr. 176',
         'lat': 52.47132384422504,
         'lng': 13.429312184717693,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47132384422504,
           'lng': 13.429312184717693}],
         'distance': 493,
         'postalCode': '12051',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermannstr. 176',
          '12051 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5541cf0b498e6fb1ed95f579-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5ce5bf882cda8b7a95'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Neukölln',
   'headerFullLocation': 'Neukölln, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 9,
   'suggestedBounds': {'ne': {'lat': 52.4813000045, 'lng': 13.439874373069987},
    'sw': {'lat': 52.472299995499995, 'lng': 13.425125626930011}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '526b9c4e11d2ef13bf80f997',
        'name': 'Prachtwerk',
        'location': {'address': 'Ganghoferstr. 2',
         'lat': 52.47907980698503,
         'lng': 13.438402686454733,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47907980698503,
           'lng': 13.438402686454733}],
         'distance': 473,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ganghoferstr. 2',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-526b9c4e11d2ef13bf80f997-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '536b6592498eafda5caef40f',
        'name': 'Rixbox',
        'location': {'address': 'Richardstr. 2',
         'crossStreet': 'Alfred-Scholz-Platz',
         'lat': 52.479005733519294,
         'lng': 13.43779279156502,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.479005733519294,
           'lng': 13.43779279156502}],
         'distance': 434,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardstr. 2 (Alfred-Scholz-Platz)',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-536b6592498eafda5caef40f-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e5948e81495a891127d0965',
        'name': 'Elit Simit',
        'location': {'address': 'Karl-Marx-Str. 109',
         'lat': 52.47860230113104,
         'lng': 13.43765104721109,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47860230113104,
           'lng': 13.43765104721109}],
         'distance': 402,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Marx-Str. 109',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e5948e81495a891127d0965-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5038bae6e4b0218ac2120161',
        'name': 'Café Ole',
        'location': {'address': 'Boddinstr. 57',
         'lat': 52.48061113156666,
         'lng': 13.431551190451929,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.48061113156666,
           'lng': 13.431551190451929}],
         'distance': 429,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Boddinstr. 57', '12053 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5038bae6e4b0218ac2120161-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5bdee8fada7080002c63c25d',
        'name': 'Cafe Babette',
        'location': {'address': 'Am Sudhaus 3',
         'lat': 52.479363,
         'lng': 13.43121,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.479363,
           'lng': 13.43121}],
         'distance': 298,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Sudhaus 3', '12053 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5bdee8fada7080002c63c25d-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4adcda77f964a5200a4621e3',
        'name': 'Café Rix',
        'location': {'address': 'Karl-Marx-Str. 141',
         'lat': 52.47696,
         'lng': 13.439365,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47696,
           'lng': 13.439365}],
         'distance': 465,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Marx-Str. 141',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4adcda77f964a5200a4621e3-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f3019d5e4b01982f3bd5666',
        'name': "Sultan's",
        'location': {'address': 'Leykestr. 1',
         'crossStreet': 'Hermannstr.',
         'lat': 52.47466529948211,
         'lng': 13.427552714318438,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47466529948211,
           'lng': 13.427552714318438}],
         'distance': 411,
         'postalCode': '12053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Leykestr. 1 (Hermannstr.)',
          '12053 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f3019d5e4b01982f3bd5666-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5099ffa0e4b0314c351f8cc7',
        'name': 'İstanbul Bäckerei Konditorei',
        'location': {'address': 'Hermannstr. 69',
         'lat': 52.47463960623943,
         'lng': 13.427517339412773,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47463960623943,
           'lng': 13.427517339412773}],
         'distance': 414,
         'postalCode': '12049',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermannstr. 69',
          '12049 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5099ffa0e4b0314c351f8cc7-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54f19681498eb6208a22c418',
        'name': 'Café Evim',
        'location': {'address': 'Richardstr. 109',
         'lat': 52.478322,
         'lng': 13.438919,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.478322,
           'lng': 13.438919}],
         'distance': 467,
         'postalCode': '12043',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardstr. 109',
          '12043 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54f19681498eb6208a22c418-8'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5c33f6626c689a92a7'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Böhmisches Dorf',
   'headerFullLocation': 'Böhmisches Dorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.475700004500005,
     'lng': 13.455973434699402},
    'sw': {'lat': 52.4666999955, 'lng': 13.4412265653006}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '549d71b1498e498dac698541',
        'name': 'Zuckerbaby',
        'location': {'address': 'Richardplatz 21',
         'lat': 52.47406674663551,
         'lng': 13.447139247387375,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47406674663551,
           'lng': 13.447139247387375}],
         'distance': 334,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Richardplatz 21',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-549d71b1498e498dac698541-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d039544a26854810d9fb2bd',
        'name': 'Geschwister Nothaft',
        'location': {'address': 'Schwarzastr. 9',
         'lat': 52.472679,
         'lng': 13.454639,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.472679,
           'lng': 13.454639}],
         'distance': 441,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schwarzastr. 9',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '404620307'}},
       'referralId': 'e-0-4d039544a26854810d9fb2bd-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d934d6452ed224b52e819ac',
        'name': 'Mal so - Mal so',
        'location': {'address': 'Böhmische Str. 14',
         'lat': 52.47420733526203,
         'lng': 13.449353684771335,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47420733526203,
           'lng': 13.449353684771335}],
         'distance': 338,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Böhmische Str. 14',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d934d6452ed224b52e819ac-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5d4360832ce8b3e348'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Köllnische Heide',
   'headerFullLocation': 'Köllnische Heide, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.472900004500005,
     'lng': 13.470672965630067},
    'sw': {'lat': 52.4638999955, 'lng': 13.455927034369934}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5dc1aaa5db6fca00083a1761',
        'name': 'Fresh Mesh Café Neukölln',
        'location': {'address': 'Grenzallee 4C',
         'lat': 52.4698566,
         'lng': 13.4631247,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4698566,
           'lng': 13.4631247}],
         'distance': 162,
         'postalCode': '12057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grenzallee 4C', '12057 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '570717532'}},
       'referralId': 'e-0-5dc1aaa5db6fca00083a1761-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51791595498e1b8012b9c59f',
        'name': "Melina's Coffee Bar",
        'location': {'address': 'Sonnenallee 293',
         'crossStreet': 'Planetenstr.',
         'lat': 52.468605293399925,
         'lng': 13.467188256748914,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.468605293399925,
           'lng': 13.467188256748914}],
         'distance': 264,
         'postalCode': '12057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Sonnenallee 293 (Planetenstr.)',
          '12057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51791595498e1b8012b9c59f-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eba78352c5bdfcbf729a873',
        'name': 'McCafe',
        'location': {'lat': 52.470885338630644,
         'lng': 13.461316261648177,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.470885338630644,
           'lng': 13.461316261648177}],
         'distance': 307,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eba78352c5bdfcbf729a873-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5de6b2a169842c781b'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Neukölln',
   'headerFullLocation': 'Neukölln, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.4854000045, 'lng': 13.45867506028745},
    'sw': {'lat': 52.476399995499996, 'lng': 13.44392493971255}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '594f88f19ef8ef328a3e5960',
        'name': 'Café ohne Titel',
        'location': {'address': 'Treptower Str. 91',
         'lat': 52.478859,
         'lng': 13.448919,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.478859,
           'lng': 13.448919}],
         'distance': 278,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Treptower Str. 91', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-594f88f19ef8ef328a3e5960-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c430451e26920a115d460e7',
        'name': 'Dritter Raum',
        'location': {'address': 'Hertzbergstraße 14',
         'lat': 52.477134,
         'lng': 13.448106,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.477134,
           'lng': 13.448106}],
         'distance': 471,
         'postalCode': '12055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hertzbergstraße 14',
          '12055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c430451e26920a115d460e7-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6b703de4b01a6dd60289aa',
        'name': 'Poropati',
        'location': {'address': 'Weserstr. 79,',
         'lat': 52.480434738628304,
         'lng': 13.446807020793997,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.480434738628304,
           'lng': 13.446807020793997}],
         'distance': 308,
         'postalCode': '12059',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weserstr. 79,', '12059 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6b703de4b01a6dd60289aa-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5d334c670565cf55e4'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tempelhof',
   'headerFullLocation': 'Tempelhof, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4689000045, 'lng': 13.409672295665075},
    'sw': {'lat': 52.459899995499995, 'lng': 13.394927704334926}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5e15cbfb5134f522cd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tempelhof',
   'headerFullLocation': 'Tempelhof, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.4830000045, 'lng': 13.386474657993688},
    'sw': {'lat': 52.473999995499994, 'lng': 13.371725342006311}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '558716e3498e235075613946',
        'name': 'Moosland',
        'location': {'address': 'Bäumerplan 28',
         'lat': 52.47693856395066,
         'lng': 13.374459743499756,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47693856395066,
           'lng': 13.374459743499756}],
         'distance': 359,
         'postalCode': '12101',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bäumerplan 28', '12101 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-558716e3498e235075613946-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '581755ee38fae85665e4e933',
        'name': 'Winter Eule',
        'location': {'address': 'Manfred-von-Richthofen-Straße 30',
         'lat': 52.481773,
         'lng': 13.37974,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.481773,
           'lng': 13.37974}],
         'distance': 366,
         'postalCode': '12101',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Manfred-von-Richthofen-Straße 30',
          '12101 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-581755ee38fae85665e4e933-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5ef80c210a28c90804'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Tempelhof',
   'headerFullLocation': 'Alt-Tempelhof, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.468600004500004,
     'lng': 13.382072245424057},
    'sw': {'lat': 52.4595999955, 'lng': 13.367327754575944}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5117947ce4b0eb6a9e8765f5',
        'name': 'Müllerskind',
        'location': {'address': 'Parkstraße 11',
         'lat': 52.462680782026176,
         'lng': 13.381306691069783,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.462680782026176,
           'lng': 13.381306691069783}],
         'distance': 475,
         'postalCode': '12103',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Parkstraße 11', '12103 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5117947ce4b0eb6a9e8765f5-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eea2f16775b562a39d06de1',
        'name': 'Café Klatsch',
        'location': {'address': 'Alt-Tempelhof 46',
         'lat': 52.46585700255897,
         'lng': 13.38076329559754,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46585700255897,
           'lng': 13.38076329559754}],
         'distance': 455,
         'postalCode': '12103',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alt-Tempelhof 46',
          '12103 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eea2f16775b562a39d06de1-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d622e0614963704f648fb94',
        'name': 'Kaiser Bäckerei',
        'location': {'lat': 52.464383,
         'lng': 13.377689,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.464383,
           'lng': 13.377689}],
         'distance': 205,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d622e0614963704f648fb94-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5ef6c312434333daa8'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Tempelhof',
   'headerFullLocation': 'Alt-Tempelhof, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4537000045, 'lng': 13.378769751235636},
    'sw': {'lat': 52.444699995499995, 'lng': 13.364030248764363}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51d4526e498ec745931098a1',
        'name': 'Bergterasse Marienhoehe',
        'location': {'lat': 52.45143508911133,
         'lng': 13.374631881713867,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45143508911133,
           'lng': 13.374631881713867}],
         'distance': 331,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51d4526e498ec745931098a1-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5fa5d23e3a41b039ff'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Mariendorf',
   'headerFullLocation': 'Mariendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4357000045, 'lng': 13.399066741036286},
    'sw': {'lat': 52.426699995499995, 'lng': 13.384333258963714}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '560820e4498e2b2f641923bd',
        'name': 'Liebling Hubbertovich',
        'location': {'lat': 52.431131,
         'lng': 13.386395,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.431131,
           'lng': 13.386395}],
         'distance': 360,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-560820e4498e2b2f641923bd-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5ff32ddb151ee61ffb'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Mariendorf',
   'headerFullLocation': 'Mariendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4510000045, 'lng': 13.406669299502544},
    'sw': {'lat': 52.4419999955, 'lng': 13.391930700497456}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f5fa5d23e3a41b03c99'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schöneberg',
   'headerFullLocation': 'Schöneberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.4698000045, 'lng': 13.353572446393448},
    'sw': {'lat': 52.4607999955, 'lng': 13.338827553606551}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59ccfafd916bc1153a18838c',
        'name': 'Café Wolke',
        'location': {'lat': 52.46493,
         'lng': 13.34423,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46493,
           'lng': 13.34423}],
         'distance': 139,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59ccfafd916bc1153a18838c-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53838bc9498e77bc15fbeb23',
        'name': 'KaffeeBohne',
        'location': {'address': 'Rubensstr. 122',
         'lat': 52.463383452785074,
         'lng': 13.344376087188719,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.463383452785074,
           'lng': 13.344376087188719}],
         'distance': 246,
         'postalCode': '12157',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rubensstr. 122',
          '12157 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53838bc9498e77bc15fbeb23-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '522376b911d2f7590f3c09f7',
        'name': 'Crown Coffee',
        'location': {'lat': 52.46688799518119,
         'lng': 13.340895824880738,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46688799518119,
           'lng': 13.340895824880738}],
         'distance': 400,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-522376b911d2f7590f3c09f7-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f60a5d23e3a41b03dfb'},
  'response': {'headerLocation': 'Friedenau',
   'headerFullLocation': 'Friedenau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.4782000045, 'lng': 13.344273853576627},
    'sw': {'lat': 52.4691999955, 'lng': 13.329526146423373}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5af160f606fb60002c7d06ca',
        'name': 'Lula Deli & Grill',
        'location': {'address': 'Lauterstr. 14/15',
         'crossStreet': 'Niedstr.',
         'lat': 52.472331857004846,
         'lng': 13.335067660142299,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.472331857004846,
           'lng': 13.335067660142299}],
         'distance': 196,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lauterstr. 14/15 (Niedstr.)',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5af160f606fb60002c7d06ca-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc05ec22a89ef3b6c6bf088',
        'name': 'Frau Behrens Torten',
        'location': {'address': 'Rheinstr. 65',
         'crossStreet': 'Dickhardtstr.',
         'lat': 52.471240812826586,
         'lng': 13.335039286448925,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.471240812826586,
           'lng': 13.335039286448925}],
         'distance': 301,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rheinstr. 65 (Dickhardtstr.)',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc05ec22a89ef3b6c6bf088-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c416f05af052d7f5d657d79',
        'name': 'pane al caffè',
        'location': {'address': 'Rheinstraße 61',
         'lat': 52.47043876678622,
         'lng': 13.334167997362965,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47043876678622,
           'lng': 13.334167997362965}],
         'distance': 407,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rheinstraße 61',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c416f05af052d7f5d657d79-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b82f9ddf964a52069f030e3',
        'name': 's-cafe',
        'location': {'address': 'Bahnhofstr. 4c',
         'lat': 52.47003928376604,
         'lng': 13.340238620196084,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47003928376604,
           'lng': 13.340238620196084}],
         'distance': 466,
         'postalCode': '12157',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bahnhofstr. 4c',
          '12157 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b82f9ddf964a52069f030e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5425a807498e31ae959321fe',
        'name': 'Café Smørrebrød',
        'location': {'address': 'Dickhardtstrasse 55',
         'lat': 52.47292188470457,
         'lng': 13.337183816128144,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47292188470457,
           'lng': 13.337183816128144}],
         'distance': 88,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dickhardtstrasse 55',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '95547233'}},
       'referralId': 'e-0-5425a807498e31ae959321fe-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f60cce9aa1674407503'},
  'response': {'headerLocation': 'Friedenau',
   'headerFullLocation': 'Friedenau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.4749000045, 'lng': 13.334373300671704},
    'sw': {'lat': 52.465899995499996, 'lng': 13.319626699328296}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c416f05af052d7f5d657d79',
        'name': 'pane al caffè',
        'location': {'address': 'Rheinstraße 61',
         'lat': 52.47043876678622,
         'lng': 13.334167997362965,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47043876678622,
           'lng': 13.334167997362965}],
         'distance': 486,
         'postalCode': '12159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rheinstraße 61',
          '12159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c416f05af052d7f5d657d79-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5087af18e4b0a95b69f222e8',
        'name': 'Wild Caffè',
        'location': {'address': 'Südwestkorso 63',
         'lat': 52.473186658330164,
         'lng': 13.321569279236925,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.473186658330164,
           'lng': 13.321569279236925}],
         'distance': 481,
         'postalCode': '12161',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Südwestkorso 63',
          '12161 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5087af18e4b0a95b69f222e8-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bf5643a6a31d13a32d0962e',
        'name': "kaf'fee",
        'location': {'address': 'Hackerstr. 1',
         'lat': 52.46702670094589,
         'lng': 13.325572265413419,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46702670094589,
           'lng': 13.325572265413419}],
         'distance': 387,
         'postalCode': '12161',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hackerstr. 1', '12161 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bf5643a6a31d13a32d0962e-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59d20629c97f2832b923eb6f',
        'name': 'Kaffee Zeit Raum',
        'location': {'address': 'Bundesallee 93',
         'crossStreet': 'Fröaufstr.',
         'lat': 52.466893,
         'lng': 13.327959,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.466893,
           'lng': 13.327959}],
         'distance': 395,
         'postalCode': '12161',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bundesallee 93 (Fröaufstr.)',
          '12161 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59d20629c97f2832b923eb6f-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d39f249bf6d5481743ac8e1',
        'name': 'Kaiserdiele',
        'location': {'address': 'Suedwestkorso 62a',
         'lat': 52.47263850348386,
         'lng': 13.321115970611572,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47263850348386,
           'lng': 13.321115970611572}],
         'distance': 470,
         'postalCode': '12161',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Suedwestkorso 62a',
          '12161 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d39f249bf6d5481743ac8e1-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f60334c670565cf6193'},
  'response': {'headerLocation': 'Schlossstraße',
   'headerFullLocation': 'Schlossstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.467100004500004,
     'lng': 13.325871994232271},
    'sw': {'lat': 52.4580999955, 'lng': 13.31112800576773}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51c58db5498e024d8db89498',
        'name': 'Café Baier',
        'location': {'address': 'Schloßstr. 26',
         'lat': 52.45944748222248,
         'lng': 13.32310672132395,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45944748222248,
           'lng': 13.32310672132395}],
         'distance': 469,
         'postalCode': '12163',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schloßstr. 26', '12163 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51c58db5498e024d8db89498-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5076d3e2e4b0c314980f872d',
        'name': 'café7rock',
        'location': {'lat': 52.46318140086736,
         'lng': 13.3235482611983,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46318140086736,
           'lng': 13.3235482611983}],
         'distance': 348,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5076d3e2e4b0c314980f872d-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5516c2a4498e2dd5c045275e',
        'name': 'San Francisco Coffee Company',
        'location': {'address': 'Schloßstr. 10',
         'lat': 52.462586,
         'lng': 13.325877,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.462586,
           'lng': 13.325877}],
         'distance': 500,
         'postalCode': '12163',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schloßstr. 10',
          '12163 Steglitz',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5516c2a4498e2dd5c045275e-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f9bdd03e4b04dd735135db8',
        'name': 'Coffee Fellows',
        'location': {'address': 'Schloßstr. 15',
         'lat': 52.46319536583327,
         'lng': 13.323403576745296,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46319536583327,
           'lng': 13.323403576745296}],
         'distance': 339,
         'postalCode': '12163',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schloßstr. 15', '12163 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f9bdd03e4b04dd735135db8-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59858f22e96d0c55fc0d9151',
        'name': "Gregory's",
        'location': {'lat': 52.460289,
         'lng': 13.323854,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.460289,
           'lng': 13.323854}],
         'distance': 445,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59858f22e96d0c55fc0d9151-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f61f20935015a7a26a1'},
  'response': {'headerLocation': 'Schlossstraße',
   'headerFullLocation': 'Schlossstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.4602000045, 'lng': 13.322170839035556},
    'sw': {'lat': 52.4511999955, 'lng': 13.307429160964444}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fcc6e2dc2ee518226635ff0',
        'name': 'Café in der Schwartzschen Villa',
        'location': {'address': 'Grunewaldstr. 54-55',
         'lat': 52.457,
         'lng': 13.31933,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.457,
           'lng': 13.31933}],
         'distance': 339,
         'postalCode': '12165',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunewaldstr. 54-55',
          '12165 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '578822630'}},
       'referralId': 'e-0-4fcc6e2dc2ee518226635ff0-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e2e9b36b61c88c3a78edf47',
        'name': 'Meyerbeer Coffee',
        'location': {'address': 'Schloßstr. 34-36',
         'crossStreet': 'Grunewaldstr.',
         'lat': 52.45721636430093,
         'lng': 13.32055491550874,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45721636430093,
           'lng': 13.32055491550874}],
         'distance': 425,
         'postalCode': '12154',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schloßstr. 34-36 (Grunewaldstr.)',
          '12154 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e2e9b36b61c88c3a78edf47-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc488f1abf495215723c593',
        'name': 'Café Scala',
        'location': {'address': 'Schloßstr. 40',
         'crossStreet': 'Grunewaldstr.',
         'lat': 52.456564,
         'lng': 13.31963884,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.456564,
           'lng': 13.31963884}],
         'distance': 342,
         'postalCode': '12165',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schloßstr. 40 (Grunewaldstr.)',
          '12165 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc488f1abf495215723c593-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d526d143062a1cdb1f670a3',
        'name': 'Dahlback',
        'location': {'address': 'Schloßstr. 33',
         'crossStreet': 'Grunewaldstr',
         'lat': 52.45668128077785,
         'lng': 13.320385003745974,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45668128077785,
           'lng': 13.320385003745974}],
         'distance': 394,
         'postalCode': '12163',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Schloßstr. 33 (Grunewaldstr)',
          '12163 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d526d143062a1cdb1f670a3-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f61334c670565cf64ba'},
  'response': {'headerLocation': 'Steglitz',
   'headerFullLocation': 'Steglitz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.4531000045, 'lng': 13.341169650844305},
    'sw': {'lat': 52.4440999955, 'lng': 13.326430349155695}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ac0ed08b04056401b503b5f',
        'name': 'ParkHaus Steglitz',
        'location': {'address': 'Albrechtstrasse 47',
         'lat': 52.447999,
         'lng': 13.337268,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.447999,
           'lng': 13.337268}],
         'distance': 244,
         'postalCode': '12267',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Albrechtstrasse 47',
          '12267 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ac0ed08b04056401b503b5f-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c84f5bb86bc49002c66c9a6',
        'name': 'Zimt & Zucker',
        'location': {'lat': 52.450954,
         'lng': 13.33735,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.450954,
           'lng': 13.33735}],
         'distance': 355,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c84f5bb86bc49002c66c9a6-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5300cc4d498eb2cde7ab3c1b',
        'name': "Burda's Café und Lounge",
        'location': {'lat': 52.44917608831454,
         'lng': 13.339092874956421,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.44917608831454,
           'lng': 13.339092874956421}],
         'distance': 364,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5300cc4d498eb2cde7ab3c1b-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '548c2bde498edc77fccb148b',
        'name': 'Caffe Capello',
        'location': {'lat': 52.445533725907715,
         'lng': 13.329376851569789,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.445533725907715,
           'lng': 13.329376851569789}],
         'distance': 454,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-548c2bde498edc77fccb148b-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f61f32ddb151ee62ab3'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Steglitz',
   'headerFullLocation': 'Steglitz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4593000045, 'lng': 13.350870688392295},
    'sw': {'lat': 52.450299995499996, 'lng': 13.336129311607706}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ea13125722ec75addbe41ba',
        'name': 'Magna Coffee Store',
        'location': {'lat': 52.45067891721606,
         'lng': 13.34150335572736,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45067891721606,
           'lng': 13.34150335572736}],
         'distance': 478,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ea13125722ec75addbe41ba-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6288be05604b7bc487'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Drakestraße',
   'headerFullLocation': 'Drakestraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.448900004500004,
     'lng': 13.31696894820418},
    'sw': {'lat': 52.4398999955, 'lng': 13.30223105179582}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '534beaa7498e2019689c78de',
        'name': 'Friedls Café',
        'location': {'lat': 52.442964,
         'lng': 13.311456,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.442964,
           'lng': 13.311456}],
         'distance': 203,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-534beaa7498e2019689c78de-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ef368775b545000081c8f92',
        'name': 'Nellies Cafe',
        'location': {'address': 'Gardeschützenweg 68',
         'lat': 52.446818,
         'lng': 13.306397,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.446818,
           'lng': 13.306397}],
         'distance': 345,
         'postalCode': '12203',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gardeschützenweg 68',
          '12203 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ef368775b545000081c8f92-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f62556f332995d53597'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Drakestraße',
   'headerFullLocation': 'Drakestraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4385000045, 'lng': 13.301867209080248},
    'sw': {'lat': 52.429499995499995, 'lng': 13.28713279091975}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '552cf63b498e9331a3dfa2f0',
        'name': 'Frau Lüske Kaffeehaus',
        'location': {'address': 'Baseler Str. 46',
         'lat': 52.437903,
         'lng': 13.295155,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.437903,
           'lng': 13.295155}],
         'distance': 436,
         'postalCode': '12205',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Baseler Str. 46',
          '12205 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-552cf63b498e9331a3dfa2f0-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f62a0021654ca552453'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Ostpreußendamm',
   'headerFullLocation': 'Ostpreußendamm, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4244000045, 'lng': 13.320664852927417},
    'sw': {'lat': 52.415399995499996, 'lng': 13.305935147072583}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f63d859ad1d9fe22544'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Ostpreußendamm',
   'headerFullLocation': 'Ostpreußendamm, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.422400004500005,
     'lng': 13.336464518879493},
    'sw': {'lat': 52.4133999955, 'lng': 13.321735481120507}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6392e219640df26d27'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lankwitz',
   'headerFullLocation': 'Lankwitz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.444000004500005,
     'lng': 13.353568128676724},
    'sw': {'lat': 52.4349999955, 'lng': 13.338831871323276}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ae8794adec1d6002cba8796',
        'name': 'Käffchen',
        'location': {'lat': 52.439203,
         'lng': 13.341797,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.439203,
           'lng': 13.341797}],
         'distance': 300,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ae8794adec1d6002cba8796-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '518bb99b498e71e09d0a17b2',
        'name': 'Cafe Panorama',
        'location': {'lat': 52.44219257114675,
         'lng': 13.342386286374927,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.44219257114675,
           'lng': 13.342386286374927}],
         'distance': 395,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-518bb99b498e71e09d0a17b2-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f63d9a71631446b9699'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lankwitz',
   'headerFullLocation': 'Lankwitz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4309000045, 'lng': 13.359165938854476},
    'sw': {'lat': 52.4218999955, 'lng': 13.344434061145526}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f646e16037dc724337b'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Marienfelde',
   'headerFullLocation': 'Marienfelde, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.417900004500005,
     'lng': 13.382363767415255},
    'sw': {'lat': 52.4088999955, 'lng': 13.367636232584745}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f64f32ddb151ee6340e'},
  'response': {'headerLocation': 'Marienfelde',
   'headerFullLocation': 'Marienfelde, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.415100004500005,
     'lng': 13.36046329993782},
    'sw': {'lat': 52.4060999955, 'lng': 13.34573670006218}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51b2c4e0498e675b339cc762',
        'name': 'Kaffeemaschine Maya',
        'location': {'lat': 52.409107,
         'lng': 13.352689,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.409107,
           'lng': 13.352689}],
         'distance': 168,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51b2c4e0498e675b339cc762-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '509117f8e4b0628fdd427359',
        'name': 'Boba Tea Shop',
        'location': {'lat': 52.41300169963086,
         'lng': 13.353548421132006,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.41300169963086,
           'lng': 13.353548421132006}],
         'distance': 269,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-509117f8e4b0628fdd427359-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '572a863b498ef2156f156c9d',
        'name': 'Türk Kahvecisi',
        'location': {'lat': 52.408203,
         'lng': 13.347912,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.408203,
           'lng': 13.347912}],
         'distance': 441,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-572a863b498ef2156f156c9d-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '538dd41d498e6cb5c9c4ea5d',
        'name': 'Café Bäckerei Süd',
        'location': {'address': 'Weskammstr. 17',
         'crossStreet': 'Hildburghauser Str.',
         'lat': 52.41448765702248,
         'lng': 13.350770473480225,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.41448765702248,
           'lng': 13.350770473480225}],
         'distance': 460,
         'postalCode': '12279',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Weskammstr. 17 (Hildburghauser Str.)',
          '12279 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-538dd41d498e6cb5c9c4ea5d-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f64e76a681dc8e9b4fd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lichtenrade',
   'headerFullLocation': 'Lichtenrade, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.407800004500004,
     'lng': 13.409462081519077},
    'sw': {'lat': 52.3987999955, 'lng': 13.394737918480924}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5083f257e4b0e24bb3fb29af',
        'name': 'Café Gold',
        'location': {'address': 'Lichtenrader Damm 79',
         'lat': 52.406458227076406,
         'lng': 13.40543427439727,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.406458227076406,
           'lng': 13.40543427439727}],
         'distance': 418,
         'postalCode': '12305',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lichtenrader Damm 79',
          '12305 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5083f257e4b0e24bb3fb29af-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f650cc1d6096fce3f42'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lichtenrade',
   'headerFullLocation': 'Lichtenrade, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.3931000045, 'lng': 13.398059629576457},
    'sw': {'lat': 52.384099995499994, 'lng': 13.383340370423545}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6515cbfb5134f54030'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lichtenrade',
   'headerFullLocation': 'Lichtenrade, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.395000004500005,
     'lng': 13.42445994637504},
    'sw': {'lat': 52.3859999955, 'lng': 13.40974005362496}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6571cf843322f3eab6'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Britz',
   'headerFullLocation': 'Britz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4554000045, 'lng': 13.435470035696987},
    'sw': {'lat': 52.446399995499995, 'lng': 13.420729964303014}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f654467db32a3b50ed7'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Britz',
   'headerFullLocation': 'Britz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4298000045, 'lng': 13.429465755053029},
    'sw': {'lat': 52.4207999955, 'lng': 13.414734244946972}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6669bc8506c4c71fce'},
  'response': {'headerLocation': 'Buckow',
   'headerFullLocation': 'Buckow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.4373000045, 'lng': 13.462867008480544},
    'sw': {'lat': 52.4282999955, 'lng': 13.448132991519458}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5f92ac40e2a302296865d75d',
        'name': 'Coffee Fellows GmbH',
        'location': {'address': 'Johannisthaler Chaussee 317',
         'crossStreet': 'Gropius Passagen',
         'lat': 52.4294772,
         'lng': 13.4560766,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4294772,
           'lng': 13.4560766}],
         'distance': 371,
         'postalCode': '12351',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Johannisthaler Chaussee 317 (Gropius Passagen)',
          '12351 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5f92ac40e2a302296865d75d-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '508bb4f9e4b07c9fb0ad88ab',
        'name': 'Tchibo',
        'location': {'address': 'Johannisthaler Chaussee 303',
         'lat': 52.429412458816216,
         'lng': 13.455609175856376,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.429412458816216,
           'lng': 13.455609175856376}],
         'distance': 377,
         'postalCode': '12351',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Johannisthaler Chaussee 303',
          '12351 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-508bb4f9e4b07c9fb0ad88ab-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56db15c8498ebb7ab5a64b02',
        'name': 'Coffee Fellows',
        'location': {'lat': 52.42938569236201,
         'lng': 13.45466719111275,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.42938569236201,
           'lng': 13.45466719111275}],
         'distance': 384,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56db15c8498ebb7ab5a64b02-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c4f3ca1a6031c002cdd9041',
        'name': 'Coffeshop Company',
        'location': {'lat': 52.429087,
         'lng': 13.456745,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.429087,
           'lng': 13.456745}],
         'distance': 421,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c4f3ca1a6031c002cdd9041-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f66ebf7ed0526864e17'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Gropiusstadt',
   'headerFullLocation': 'Gropiusstadt, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.4272000045, 'lng': 13.466265320660499},
    'sw': {'lat': 52.4181999955, 'lng': 13.4515346793395}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '59ac1749625a664f68c0a4d6',
        'name': 'Mimoza Café',
        'location': {'lat': 52.423881,
         'lng': 13.462936,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.423881,
           'lng': 13.462936}],
         'distance': 303,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-59ac1749625a664f68c0a4d6-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53a82ed3498ef39b365de628',
        'name': 'KompaktKAUF',
        'location': {'address': 'Lipschitzallee 74',
         'crossStreet': 'U7 Lipschitzallee, Bahnsteig',
         'lat': 52.42455117727241,
         'lng': 13.462886810302734,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.42455117727241,
           'lng': 13.462886810302734}],
         'distance': 340,
         'postalCode': '12353',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lipschitzallee 74 (U7 Lipschitzallee, Bahnsteig)',
          '12353 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53a82ed3498ef39b365de628-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5151d12fe4b0873d63be3d9c',
        'name': 'Cafe Happiness',
        'location': {'lat': 52.42509330584653,
         'lng': 13.46311774557393,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.42509330584653,
           'lng': 13.46311774557393}],
         'distance': 391,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5151d12fe4b0873d63be3d9c-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f676e16037dc7243f60'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Rudow',
   'headerFullLocation': 'Rudow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.415500004500004,
     'lng': 13.5051633667156},
    'sw': {'lat': 52.4064999955, 'lng': 13.4904366332844}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f67aa0cc20f98726a99'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Rudow',
   'headerFullLocation': 'Rudow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4338000045, 'lng': 13.497866423478913},
    'sw': {'lat': 52.424799995499995, 'lng': 13.48313357652109}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f67f2dca11a89db82c3'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Britz',
   'headerFullLocation': 'Britz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4518000045, 'lng': 13.460469433341906},
    'sw': {'lat': 52.442799995499996, 'lng': 13.445730566658092}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f67c656a10ca6ab3101'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Treptow',
   'headerFullLocation': 'Alt-Treptow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.491100004500005,
     'lng': 13.474576015962935},
    'sw': {'lat': 52.4820999955, 'lng': 13.459823984037065}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f68a0021654ca553910'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Baumschulenweg',
   'headerFullLocation': 'Baumschulenweg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.466900004500005,
     'lng': 13.489071960741708},
    'sw': {'lat': 52.4578999955, 'lng': 13.474328039258292}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '53a7393a498ea264698a51d2',
        'name': 'Back- & Coffeeshop',
        'location': {'address': 'Baumschulenstr. 65 a',
         'lat': 52.46123934987812,
         'lng': 13.48149061203003,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46123934987812,
           'lng': 13.48149061203003}],
         'distance': 129,
         'postalCode': '12437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Baumschulenstr. 65 a',
          '12437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-53a7393a498ea264698a51d2-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55b8d082498e7eb6a3b7d9dc',
        'name': 'Pauline P.',
        'location': {'address': 'Kiefholzstr. 258',
         'lat': 52.465738907208795,
         'lng': 13.486540867837343,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.465738907208795,
           'lng': 13.486540867837343}],
         'distance': 495,
         'postalCode': '12437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kiefholzstr. 258',
          '12437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55b8d082498e7eb6a3b7d9dc-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5129f3bbe4b03158bd65fb99',
        'name': 'Lieblings Café',
        'location': {'address': 'Baumschulenstr. 26',
         'lat': 52.46474307369342,
         'lng': 13.486404418945312,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.46474307369342,
           'lng': 13.486404418945312}],
         'distance': 412,
         'postalCode': '12437',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Baumschulenstr. 26',
          '12437 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5129f3bbe4b03158bd65fb99-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f68a0021654ca553a1c'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Oberspree',
   'headerFullLocation': 'Oberspree, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.457300004500006,
     'lng': 13.535970353658046},
    'sw': {'lat': 52.4482999955, 'lng': 13.521229646341956}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5443cd1c498e35dcdadfd7b2',
        'name': 'Kranhaus Café',
        'location': {'address': 'Paul-Tropp-Str. 11',
         'lat': 52.454245344669864,
         'lng': 13.528738433865446,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.454245344669864,
           'lng': 13.528738433865446}],
         'distance': 161,
         'postalCode': '12459',
         'cc': 'DE',
         'neighborhood': 'Oberschöneweide',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Paul-Tropp-Str. 11',
          '12459 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5443cd1c498e35dcdadfd7b2-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5114d3f5e4b03e318a7c01fa',
        'name': 'Kaffeebar',
        'location': {'lat': 52.45140007844457,
         'lng': 13.527098592955603,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45140007844457,
           'lng': 13.527098592955603}],
         'distance': 186,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5114d3f5e4b03e318a7c01fa-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50924ba8e4b092855ec45423',
        'name': 'Turmcafe',
        'location': {'lat': 52.45697425252819,
         'lng': 13.529669477258276,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45697425252819,
           'lng': 13.529669477258276}],
         'distance': 470,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50924ba8e4b092855ec45423-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f68aa0cc20f9872707a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wuhlheide',
   'headerFullLocation': 'Wuhlheide, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.470100004500004,
     'lng': 13.535372496638015},
    'sw': {'lat': 52.4610999955, 'lng': 13.520627503361986}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6966505c5f6f89af3a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Johannisthal',
   'headerFullLocation': 'Johannisthal, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4482000045, 'lng': 13.512568831114368},
    'sw': {'lat': 52.4391999955, 'lng': 13.497831168885632}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6933f6626c689ac379'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Adlershof',
   'headerFullLocation': 'Adlershof, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.4401000045, 'lng': 13.550567476568546},
    'sw': {'lat': 52.4310999955, 'lng': 13.535832523431456}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ee339c425fd257f91519d6a',
        'name': 'Fräulein Von Unruh',
        'location': {'lat': 52.436632,
         'lng': 13.544615,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.436632,
           'lng': 13.544615}],
         'distance': 149,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ee339c425fd257f91519d6a-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e450fe56e62c40007d869ee',
        'name': 'MUCA Berlin Adlershof',
        'location': {'address': 'Ernst-Augustin-Straße 2',
         'lat': 52.4336,
         'lng': 13.541705,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4336,
           'lng': 13.541705}],
         'distance': 244,
         'postalCode': '12489',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ernst-Augustin-Straße 2',
          '12489 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5e450fe56e62c40007d869ee-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55ef1f1d498e70c207dbaa15',
        'name': 'Teeshop Berlin - Ronnefeldt Vertriebspartner',
        'location': {'address': 'Rudower Chaussee 5B',
         'lat': 52.43374206409859,
         'lng': 13.538334702685574,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.43374206409859,
           'lng': 13.538334702685574}],
         'distance': 389,
         'postalCode': '12489',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rudower Chaussee 5B',
          '12489 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '141976417'}},
       'referralId': 'e-0-55ef1f1d498e70c207dbaa15-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6a35436f34a07cddab'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Altglienicke',
   'headerFullLocation': 'Altglienicke, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4173000045, 'lng': 13.549063667235043},
    'sw': {'lat': 52.408299995499995, 'lng': 13.534336332764958}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6a71cf843322f3fdc5'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Bohnsdorf',
   'headerFullLocation': 'Bohnsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4021000045, 'lng': 13.571561130514393},
    'sw': {'lat': 52.393099995499995, 'lng': 13.556838869485606}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6ac4e5cf3a8392718a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schmöckwitz',
   'headerFullLocation': 'Schmöckwitz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.3901000045, 'lng': 13.641259129440167},
    'sw': {'lat': 52.381099995499994, 'lng': 13.626540870559834}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6aa5d23e3a41b0684a'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Museumsinsel',
   'headerFullLocation': 'Museumsinsel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 18,
   'suggestedBounds': {'ne': {'lat': 52.5212000045, 'lng': 13.407381067922275},
    'sw': {'lat': 52.5121999955, 'lng': 13.392618932077726}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55782f9e498ee3b164cc75f5',
        'name': 'Pax Coffee',
        'location': {'address': 'Oberwallstraße 20',
         'lat': 52.513906,
         'lng': 13.397219,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513906,
           'lng': 13.397219}],
         'distance': 363,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oberwallstraße 20',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55782f9e498ee3b164cc75f5-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54199179498e6e1206f0b810',
        'name': 'Lunch Time',
        'location': {'address': 'Jägerstr. 34',
         'lat': 52.51427792365403,
         'lng': 13.396987908146501,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51427792365403,
           'lng': 13.396987908146501}],
         'distance': 338,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jägerstr. 34', '10117 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '150176200'}},
       'referralId': 'e-0-54199179498e6e1206f0b810-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0e18d0f964a520f05423e3',
        'name': 'Balzac Coffee',
        'location': {'address': 'Karl-Liebknecht-Str. 5',
         'crossStreet': 'Spandauer Str.',
         'lat': 52.519681063790664,
         'lng': 13.403686798037004,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519681063790664,
           'lng': 13.403686798037004}],
         'distance': 415,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 5 (Spandauer Str.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0e18d0f964a520f05423e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '500fbae1e4b06b19286e62d2',
        'name': 'Café im Zeughaus (DHM)',
        'location': {'address': 'Unter den Linden 2',
         'lat': 52.517847285596254,
         'lng': 13.397708451165325,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517847285596254,
           'lng': 13.397708451165325}],
         'distance': 201,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 2',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-500fbae1e4b06b19286e62d2-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a48a7be75eee46f19ff83bd',
        'name': 'Kaffee Karamell',
        'location': {'address': 'Scharrenstr. 22',
         'lat': 52.51419708479862,
         'lng': 13.405519796740581,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51419708479862,
           'lng': 13.405519796740581}],
         'distance': 466,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Scharrenstr. 22',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a48a7be75eee46f19ff83bd-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc46a7474a9a59309bfd5f6',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Am Lustgarten',
         'crossStreet': 'Berliner Dom',
         'lat': 52.518662064439965,
         'lng': 13.401183957757143,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.518662064439965,
           'lng': 13.401183957757143}],
         'distance': 232,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Lustgarten (Berliner Dom)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc46a7474a9a59309bfd5f6-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6df5f2e4b08610771271c9',
        'name': 'KugelEi-Café',
        'location': {'lat': 52.516566,
         'lng': 13.406955,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516566,
           'lng': 13.406955}],
         'distance': 471,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6df5f2e4b08610771271c9-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eedf41d9a52993fb7cfb1ef',
        'name': 'Allegretto Caffè',
        'location': {'address': 'Bodestr. 3',
         'lat': 52.519833,
         'lng': 13.398358,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519833,
           'lng': 13.398358}],
         'distance': 366,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bodestr. 3', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eedf41d9a52993fb7cfb1ef-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6850c9f964a52045712be3',
        'name': 'Restaurant Cum Laude',
        'location': {'address': 'Universitätsstr. 4',
         'lat': 52.51855135055943,
         'lng': 13.394509655752087,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51855135055943,
           'lng': 13.394509655752087}],
         'distance': 425,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Universitätsstr. 4',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6850c9f964a52045712be3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50f6c465e4b052e422df4aa8',
        'name': 'Café im Alten Museum',
        'location': {'address': 'Am Lustgarten',
         'lat': 52.51936767697486,
         'lng': 13.39857816696167,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51936767697486,
           'lng': 13.39857816696167}],
         'distance': 312,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Lustgarten', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50f6c465e4b052e422df4aa8-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b7fcd07f964a5205d3e30e3',
        'name': 'the coffee shop',
        'location': {'address': 'Hausvogteiplatz 13',
         'crossStreet': 'Niederwallstr.',
         'lat': 52.51304581458592,
         'lng': 13.397366344797774,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51304581458592,
           'lng': 13.397366344797774}],
         'distance': 444,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hausvogteiplatz 13 (Niederwallstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b7fcd07f964a5205d3e30e3-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55f41f40498e7cc71a0d0632',
        'name': 'Domcafé',
        'location': {'address': 'Am Lustgarten 1',
         'lat': 52.51862016607101,
         'lng': 13.401104807853699,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51862016607101,
           'lng': 13.401104807853699}],
         'distance': 226,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Lustgarten 1',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55f41f40498e7cc71a0d0632-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5127e7bee4b03a531599160b',
        'name': 'Gameduell Coffeemaker',
        'location': {'address': 'Taubenstrasse 24',
         'lat': 52.51385670505711,
         'lng': 13.39547288000693,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51385670505711,
           'lng': 13.39547288000693}],
         'distance': 440,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Taubenstrasse 24', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5127e7bee4b03a531599160b-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57ac57bc498ed153471494a0',
        'name': 'Back Palace',
        'location': {'address': 'Propststraße 1-4',
         'lat': 52.51695,
         'lng': 13.406853,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51695,
           'lng': 13.406853}],
         'distance': 465,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Propststraße 1-4',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57ac57bc498ed153471494a0-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc06a05f8219c74b083b110',
        'name': 'CafÄ— Pergamon',
        'location': {'address': 'Bodestr. 1-3',
         'lat': 52.520399155853454,
         'lng': 13.396410942077637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520399155853454,
           'lng': 13.396410942077637}],
         'distance': 478,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bodestr. 1-3', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc06a05f8219c74b083b110-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fe068a8e4b096aa57eefe3e',
        'name': 'Burgcafé',
        'location': {'address': 'Burgstr. 26',
         'crossStreet': 'DG, Raum 506',
         'lat': 52.521019337192,
         'lng': 13.401024341583252,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.521019337192,
           'lng': 13.401024341583252}],
         'distance': 485,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Burgstr. 26 (DG, Raum 506)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fe068a8e4b096aa57eefe3e-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '572881d6498e8d9e56d37742',
        'name': 'Café & Restaurant Spreeblick',
        'location': {'address': 'Propststr. 9',
         'lat': 52.516152310515814,
         'lng': 13.405863046646118,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516152310515814,
           'lng': 13.405863046646118}],
         'distance': 401,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Propststr. 9', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '184575676'}},
       'referralId': 'e-0-572881d6498e8d9e56d37742-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b699b2ee96d0c002c832626',
        'name': 'Allegretto Gran Caffè',
        'location': {'address': 'Anna-Louisa-Karsch-Str. 2',
         'lat': 52.52063913439294,
         'lng': 13.401193910758593,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52063913439294,
           'lng': 13.401193910758593}],
         'distance': 445,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Anna-Louisa-Karsch-Str. 2',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b699b2ee96d0c002c832626-17'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6b83e39e1eddb11813'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Köpenick',
   'headerFullLocation': 'Köpenick, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4672000045, 'lng': 13.5864720109777},
    'sw': {'lat': 52.458199995499996, 'lng': 13.571727989022301}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f33c090e4b0a2c6ac660dd4',
        'name': 'Segafredo',
        'location': {'lat': 52.45866057043067,
         'lng': 13.576802069847945,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.45866057043067,
           'lng': 13.576802069847945}],
         'distance': 475,
         'cc': 'DE',
         'city': 'Berlin - Köpenick',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin-Köpenick', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f33c090e4b0a2c6ac660dd4-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6b4467db32a3b52531'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Köpenick',
   'headerFullLocation': 'Köpenick, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.434800004500005,
     'lng': 13.59936659060995},
    'sw': {'lat': 52.4257999955, 'lng': 13.584633409390051}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6b726940047d5055a4'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Müggelheim',
   'headerFullLocation': 'Müggelheim, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.419400004500005,
     'lng': 13.670764017881247},
    'sw': {'lat': 52.4103999955, 'lng': 13.656035982118752}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50e6d4fce4b01db8082a2ccd',
        'name': 'Café No. 1',
        'location': {'address': 'Gosener Damm 1',
         'lat': 52.41054258365528,
         'lng': 13.665124025955164,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.41054258365528,
           'lng': 13.665124025955164}],
         'distance': 498,
         'postalCode': '12559',
         'cc': 'DE',
         'city': 'Müggelheim',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Gosener Damm 1',
          '12559 Berlin-Müggelheim',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50e6d4fce4b01db8082a2ccd-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6ca614367fd9d35f87'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Friedrichshagen',
   'headerFullLocation': 'Friedrichshagen, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4631000045, 'lng': 13.643571324495884},
    'sw': {'lat': 52.454099995499995, 'lng': 13.628828675504117}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6c5111134f6bbe423a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Rahnsdorf',
   'headerFullLocation': 'Rahnsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.448300004500005,
     'lng': 13.710768847841189},
    'sw': {'lat': 52.4392999955, 'lng': 13.696031152158811}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6c7694ba313bde2e0a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Hellersdorf',
   'headerFullLocation': 'Hellersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5280000045, 'lng': 13.59568221046937},
    'sw': {'lat': 52.518999995499996, 'lng': 13.58091778953063}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5718e552498e9ddf904a6f37',
        'name': 'Il Centro',
        'location': {'lat': 52.521915,
         'lng': 13.587201,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.521915,
           'lng': 13.587201}],
         'distance': 191,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5718e552498e9ddf904a6f37-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '522d6ca111d2d7896abd75aa',
        'name': 'Coffee Jungle',
        'location': {'address': 'Hellersdorfer Str.',
         'lat': 52.5213571030942,
         'lng': 13.587394016164998,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5213571030942,
           'lng': 13.587394016164998}],
         'distance': 246,
         'postalCode': '12619',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hellersdorfer Str.',
          '12619 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-522d6ca111d2d7896abd75aa-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6df5f91049c0f81f18'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Kaulsdorf',
   'headerFullLocation': 'Kaulsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5072000045, 'lng': 13.595178717059866},
    'sw': {'lat': 52.498199995499995, 'lng': 13.580421282940133}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6db8c07577f77edafd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Mahlsdorf',
   'headerFullLocation': 'Mahlsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5071000045, 'lng': 13.623878700274965},
    'sw': {'lat': 52.4980999955, 'lng': 13.609121299725036}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '586febd0ea29b87b8648933c',
        'name': 'Mulackritze',
        'location': {'lat': 52.502792,
         'lng': 13.618403,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.502792,
           'lng': 13.618403}],
         'distance': 130,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-586febd0ea29b87b8648933c-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c2f69196e46500039132669',
        'name': 'Segafredo Zanetti',
        'location': {'lat': 52.501197,
         'lng': 13.622675,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.501197,
           'lng': 13.622675}],
         'distance': 446,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c2f69196e46500039132669-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6dcce9aa167440a9b2'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Hellersdorf',
   'headerFullLocation': 'Hellersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5417000045, 'lng': 13.620884513756222},
    'sw': {'lat': 52.532699995499996, 'lng': 13.606115486243779}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a2d00b051950e7c0e4ba36b',
        'name': 'Kaffeepause',
        'location': {'address': 'Lyonel-Feininger-Str. 5',
         'lat': 52.537616,
         'lng': 13.607204,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.537616,
           'lng': 13.607204}],
         'distance': 428,
         'postalCode': '12627',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lyonel-Feininger-Str. 5',
          '12627 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a2d00b051950e7c0e4ba36b-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6df5f91049c0f822c7'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Hellersdorf',
   'headerFullLocation': 'Hellersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5458000045, 'lng': 13.597485203422606},
    'sw': {'lat': 52.5367999955, 'lng': 13.582714796577394}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6eebf5db5626e2a059'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Marzahner Promenade',
   'headerFullLocation': 'Marzahner Promenade, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5546000045, 'lng': 13.573386684244959},
    'sw': {'lat': 52.5455999955, 'lng': 13.558613315755043}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6e3a1e82333e954489'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Marzahn',
   'headerFullLocation': 'Marzahn, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.541400004500005,
     'lng': 13.544084463299368},
    'sw': {'lat': 52.5323999955, 'lng': 13.529315536700631}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6ee998a41dc43e6290'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Alt-Biesdorf',
   'headerFullLocation': 'Alt-Biesdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5120000045, 'lng': 13.566479522851488},
    'sw': {'lat': 52.5029999955, 'lng': 13.551720477148514}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51f3b351498e15910fb31a92',
        'name': 'Cafe am Park',
        'location': {'lat': 52.50737762451172,
         'lng': 13.553918838500977,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50737762451172,
           'lng': 13.553918838500977}],
         'distance': 351,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51f3b351498e15910fb31a92-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6ff2dca11a89dba08a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Springpfuhl',
   'headerFullLocation': 'Springpfuhl, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5436000045, 'lng': 13.572384833336999},
    'sw': {'lat': 52.534599995499995, 'lng': 13.557615166663}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b699edec9f90700397e0ff2',
        'name': 'The Cottage - Tea Room',
        'location': {'address': 'Blumberger Damm 44',
         'crossStreet': 'Gärten der Welt',
         'lat': 52.5380239,
         'lng': 13.570371,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5380239,
           'lng': 13.570371}],
         'distance': 382,
         'postalCode': '12685',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Blumberger Damm 44 (Gärten der Welt)',
          '12685 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b699edec9f90700397e0ff2-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6f88be05604b7bf893'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Marzahner Promenade',
   'headerFullLocation': 'Marzahner Promenade, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5609000045, 'lng': 13.571887744851002},
    'sw': {'lat': 52.551899995499994, 'lng': 13.557112255148999}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6ff2dca11a89dba2c0'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Marzahn',
   'headerFullLocation': 'Marzahn, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5710000045, 'lng': 13.574889446009827},
    'sw': {'lat': 52.561999995499995, 'lng': 13.560110553990175}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f6f66505c5f6f89ca83'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Residenzstraße',
   'headerFullLocation': 'Residenzstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5712000045, 'lng': 13.340689479706368},
    'sw': {'lat': 52.562199995499995, 'lng': 13.32591052029363}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f704360832ce8b42fb0'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Malchow',
   'headerFullLocation': 'Malchow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5860000045, 'lng': 13.498191974353611},
    'sw': {'lat': 52.576999995499996, 'lng': 13.483408025646389}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7032abda5e08ff0570'},
  'response': {'headerLocation': 'Lichtenberg',
   'headerFullLocation': 'Lichtenberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.5545000045, 'lng': 13.511986667413115},
    'sw': {'lat': 52.545499995499995, 'lng': 13.497213332586885}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ccd7ccc2dc437045dacce08',
        'name': 'Storchenback & Café',
        'location': {'address': 'Hauptstr. 9',
         'crossStreet': 'EKZ Storchenhof',
         'lat': 52.547795971118255,
         'lng': 13.50449227148548,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.547795971118255,
           'lng': 13.50449227148548}],
         'distance': 245,
         'postalCode': '13055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hauptstr. 9 (EKZ Storchenhof)',
          '13055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ccd7ccc2dc437045dacce08-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4db157db5da32cf2df5955e1',
        'name': 'Café K3',
        'location': {'address': 'Konrad-Wolf-Str. 3',
         'lat': 52.5484310180344,
         'lng': 13.501651332911933,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5484310180344,
           'lng': 13.501651332911933}],
         'distance': 265,
         'postalCode': '13055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Konrad-Wolf-Str. 3',
          '13055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4db157db5da32cf2df5955e1-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f70b2b8e4b031ed86ba49ae',
        'name': 'Q1 Cafe Lounge',
        'location': {'lat': 52.550978,
         'lng': 13.509703,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.550978,
           'lng': 13.509703}],
         'distance': 362,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f70b2b8e4b031ed86ba49ae-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d3090dc046e4a0008bab435',
        'name': 'Café Zwerg',
        'location': {'address': 'Konrad-Wolf-Str. 7',
         'lat': 52.548176,
         'lng': 13.500028,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.548176,
           'lng': 13.500028}],
         'distance': 370,
         'postalCode': '13053',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Konrad-Wolf-Str. 7',
          '13053 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d3090dc046e4a0008bab435-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7083e39e1eddb12ddd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lichtenberg',
   'headerFullLocation': 'Lichtenberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.544600004500005,
     'lng': 13.503385001551782},
    'sw': {'lat': 52.5355999955, 'lng': 13.488614998448218}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d8f40f45091a1cd129fa101',
        'name': 'Eiscafe Heidi',
        'location': {'address': 'Konrad-Wolf-Str. 111',
         'lat': 52.54356302905851,
         'lng': 13.491826346682895,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54356302905851,
           'lng': 13.491826346682895}],
         'distance': 477,
         'postalCode': '13055',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Konrad-Wolf-Str. 111',
          '13055 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d8f40f45091a1cd129fa101-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4be817b2947820a10371b4db',
        'name': 'Café im Rewe',
        'location': {'lat': 52.543174,
         'lng': 13.490702,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.543174,
           'lng': 13.490702}],
         'distance': 495,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4be817b2947820a10371b4db-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f71e5bf882cda8bcb1f'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Falkenberg',
   'headerFullLocation': 'Falkenberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.575600004500004,
     'lng': 13.548890221130847},
    'sw': {'lat': 52.5665999955, 'lng': 13.534109778869151}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b49ef15f964a520417626e3',
        'name': 'Café Lehmsofa',
        'location': {'address': 'Dorfstraße 4',
         'lat': 52.570004969875995,
         'lng': 13.536965075664517,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.570004969875995,
           'lng': 13.536965075664517}],
         'distance': 330,
         'postalCode': '13057',
         'cc': 'DE',
         'city': 'Falkenberg',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dorfstraße 4',
          '13057 Berlin-Falkenberg',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b49ef15f964a520417626e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f3fc6b7e4b0b019c62ec56e',
        'name': 'Dorfkate Berlin-Falkenberg',
        'location': {'address': 'Dorfstraße 4, 13057 Berlin',
         'lat': 52.57014366524195,
         'lng': 13.536778869913586,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57014366524195,
           'lng': 13.536778869913586}],
         'distance': 336,
         'postalCode': '13057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Dorfstraße 4, 13057 Berlin',
          '13057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f3fc6b7e4b0b019c62ec56e-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5ba63648345cbe002cc86c61',
        'name': 'Tierheim Café',
        'location': {'lat': 52.573916,
         'lng': 13.546236,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.573916,
           'lng': 13.546236}],
         'distance': 448,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5ba63648345cbe002cc86c61-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f71368fe8722518a5ea'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wartenberg',
   'headerFullLocation': 'Wartenberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5854000045, 'lng': 13.529091873176911},
    'sw': {'lat': 52.5763999955, 'lng': 13.514308126823087}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f71c4e5cf3a83928d71'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Weißensee',
   'headerFullLocation': 'Weißensee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5610000045, 'lng': 13.455587761689195},
    'sw': {'lat': 52.5519999955, 'lng': 13.440812238310805}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d85e0743031ab000871585a',
        'name': 'Neue Liebe Mirbach',
        'location': {'lat': 52.552484,
         'lng': 13.448861,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.552484,
           'lng': 13.448861}],
         'distance': 449,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d85e0743031ab000871585a-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6ecc86f964a5200ecb2ce3',
        'name': 'Café Mirbach',
        'location': {'address': 'Behaimstr. 64',
         'crossStreet': 'Am Mirbachplatz',
         'lat': 52.552555191409745,
         'lng': 13.448978529852974,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.552555191409745,
           'lng': 13.448978529852974}],
         'distance': 442,
         'postalCode': '13086',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Behaimstr. 64 (Am Mirbachplatz)',
          '13086 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6ecc86f964a5200ecb2ce3-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f71f32ddb151ee66a59'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Buschallee',
   'headerFullLocation': 'Buschallee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5648000045, 'lng': 13.478188401614064},
    'sw': {'lat': 52.555799995499996, 'lng': 13.463411598385937}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5390b751498ea18cb3d0031c',
        'name': "Rita's Baguette-Eck",
        'location': {'address': 'Berliner Allee 249',
         'crossStreet': 'Liebermannstr.',
         'lat': 52.559799172937936,
         'lng': 13.466695547103882,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.559799172937936,
           'lng': 13.466695547103882}],
         'distance': 283,
         'postalCode': '13088',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berliner Allee 249 (Liebermannstr.)',
          '13088 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5390b751498ea18cb3d0031c-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7292e219640df2a763'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Heinersdorf',
   'headerFullLocation': 'Heinersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.575200004500005,
     'lng': 13.448390153720675},
    'sw': {'lat': 52.5661999955, 'lng': 13.433609846279326}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f723a1e82333e9554fb'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Buch',
   'headerFullLocation': 'Buch, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.6374000045, 'lng': 13.490300655133142},
    'sw': {'lat': 52.6283999955, 'lng': 13.47549934486686}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f72f32ddb151ee66dc8'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Französisch Buchholz',
   'headerFullLocation': 'Französisch Buchholz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.6245000045, 'lng': 13.445398474018347},
    'sw': {'lat': 52.615499995499995, 'lng': 13.430601525981654}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f73164c641f7bb8eb95'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Blankenburg',
   'headerFullLocation': 'Blankenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.596600004500004,
     'lng': 13.465293762399146},
    'sw': {'lat': 52.5875999955, 'lng': 13.450506237600855}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51fd2d0c498ea00976319d34',
        'name': 'Kaffee-Haus Madlen',
        'location': {'lat': 52.593037155451476,
         'lng': 13.457036553644249,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.593037155451476,
           'lng': 13.457036553644249}],
         'distance': 119,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51fd2d0c498ea00976319d34-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f73a5d23e3a41b08ae8'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Niederschönhausen',
   'headerFullLocation': 'Niederschönhausen, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.5869000045, 'lng': 13.407092126125372},
    'sw': {'lat': 52.5778999955, 'lng': 13.392307873874627}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5708ced5498e19cf02eae3ee',
        'name': 'Auszeit',
        'location': {'address': 'Hermann-Hesse-Str. 15',
         'lat': 52.580399,
         'lng': 13.400898,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.580399,
           'lng': 13.400898}],
         'distance': 237,
         'postalCode': '13156',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermann-Hesse-Str. 15',
          '13156 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5708ced5498e19cf02eae3ee-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52f51521498ed2930eda56df',
        'name': 'Lieblingsstück',
        'location': {'address': 'Hermann-Hesse-Str. 2',
         'lat': 52.5809266451122,
         'lng': 13.40274622862408,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5809266451122,
           'lng': 13.40274622862408}],
         'distance': 263,
         'postalCode': '13156',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hermann-Hesse-Str. 2',
          '13156 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52f51521498ed2930eda56df-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5688ed96498ecdfade439a4a',
        'name': 'Kaffee & Leckeres',
        'location': {'lat': 52.580874715963716,
         'lng': 13.402839385660407,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.580874715963716,
           'lng': 13.402839385660407}],
         'distance': 271,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5688ed96498ecdfade439a4a-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f73368fe8722518b011'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Nordend',
   'headerFullLocation': 'Nordend, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.597700004500005,
     'lng': 13.390893948015076},
    'sw': {'lat': 52.5886999955, 'lng': 13.376106051984923}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f744360832ce8b44050'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Blankenfelde',
   'headerFullLocation': 'Blankenfelde, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.6275000045, 'lng': 13.405198981106142},
    'sw': {'lat': 52.618499995499995, 'lng': 13.390401018893858}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a8844e1c53093332b8179f9',
        'name': 'Café Steckenpferd',
        'location': {'address': 'Hauptstraße 35',
         'lat': 52.619412623498405,
         'lng': 13.394050598144531,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.619412623498405,
           'lng': 13.394050598144531}],
         'distance': 472,
         'postalCode': '13159',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hauptstraße 35',
          '13159 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a8844e1c53093332b8179f9-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f74726940047d507898'},
  'response': {'headerLocation': 'Pankow',
   'headerFullLocation': 'Pankow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 12,
   'suggestedBounds': {'ne': {'lat': 52.5740000045, 'lng': 13.41578995149969},
    'sw': {'lat': 52.564999995499996, 'lng': 13.40101004850031}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5475d3f4498e156b2209f652',
        'name': 'liebes bisschen',
        'location': {'address': 'Berliner Str. 6',
         'crossStreet': 'Schulstr.',
         'lat': 52.569593,
         'lng': 13.410874,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.569593,
           'lng': 13.410874}],
         'distance': 167,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berliner Str. 6 (Schulstr.)',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5475d3f4498e156b2209f652-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d2889b2ebacb1f71a0af24f',
        'name': 'Eden*****',
        'location': {'address': 'Breite Str. 43a',
         'lat': 52.57134225789132,
         'lng': 13.411595043768896,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57134225789132,
           'lng': 13.411595043768896}],
         'distance': 297,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Breite Str. 43a',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d2889b2ebacb1f71a0af24f-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '56e540d6498e13426cb5fef0',
        'name': 'Wo der Bär den Honig holt',
        'location': {'address': 'Florastrasse 37',
         'lat': 52.56571158842466,
         'lng': 13.407565231482836,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.56571158842466,
           'lng': 13.407565231482836}],
         'distance': 425,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Florastrasse 37',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-56e540d6498e13426cb5fef0-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b41beb0f964a520acc825e3',
        'name': 'Rosenrot',
        'location': {'address': 'Ossietzkystr. 2',
         'lat': 52.57128364104611,
         'lng': 13.409001231193542,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57128364104611,
           'lng': 13.409001231193542}],
         'distance': 202,
         'postalCode': '13187',
         'cc': 'DE',
         'neighborhood': 'Pankow',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ossietzkystr. 2',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b41beb0f964a520acc825e3-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ecf67948231b9ef8754a30e',
        'name': 'Milchmanns Kaffeehaus',
        'location': {'address': 'Berliner Str. 119',
         'crossStreet': 'Hadlichstr.',
         'lat': 52.56821197812331,
         'lng': 13.412189888627312,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.56821197812331,
           'lng': 13.412189888627312}],
         'distance': 293,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berliner Str. 119 (Hadlichstr.)',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ecf67948231b9ef8754a30e-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bfcdc2af61dc9b69a309ede',
        'name': 'Café Nord',
        'location': {'address': 'Grunowstraße 21',
         'crossStreet': 'Schulstraße',
         'lat': 52.569048988813115,
         'lng': 13.408895305942314,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.569048988813115,
           'lng': 13.408895305942314}],
         'distance': 60,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Grunowstraße 21 (Schulstraße)',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bfcdc2af61dc9b69a309ede-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '527e6abb498eaf4167424763',
        'name': 'Tchibo',
        'location': {'address': 'Breite Str. 18-21a',
         'lat': 52.569697462377476,
         'lng': 13.404002089755926,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.569697462377476,
           'lng': 13.404002089755926}],
         'distance': 298,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Breite Str. 18-21a',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-527e6abb498eaf4167424763-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f3a5602e4b00bffdf0dd7ea',
        'name': 'Floras Backmühle',
        'location': {'address': 'Florastr. 51',
         'lat': 52.566921071243634,
         'lng': 13.41057300567627,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.566921071243634,
           'lng': 13.41057300567627}],
         'distance': 322,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Florastr. 51', '13187 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f3a5602e4b00bffdf0dd7ea-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5e3943a57bc3680008709b39',
        'name': 'TeeGschwendner',
        'location': {'address': 'Breite Str. 20',
         'lat': 52.57020714,
         'lng': 13.40369646,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57020714,
           'lng': 13.40369646}],
         'distance': 327,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Breite Str. 20',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '581384041'}},
       'referralId': 'e-0-5e3943a57bc3680008709b39-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5729eef4498e1b2c0e97e852',
        'name': 'verweile doch',
        'location': {'address': 'Breite Str. 2A',
         'lat': 52.57219979,
         'lng': 13.41367398,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57219979,
           'lng': 13.41367398}],
         'distance': 466,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Breite Str. 2A',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5729eef4498e1b2c0e97e852-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52e663ca498e5c0cd49e6815',
        'name': 'Café Schön & Gut | Weinhandlung',
        'location': {'address': 'Neue Schönholzer Str. 2',
         'lat': 52.568896997431466,
         'lng': 13.40155005455017,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.568896997431466,
           'lng': 13.40155005455017}],
         'distance': 468,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Neue Schönholzer Str. 2',
          '13187 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '80480936'}},
       'referralId': 'e-0-52e663ca498e5c0cd49e6815-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e7b3154b8f7c102861c6382',
        'name': 'Barista Coffee Shop',
        'location': {'address': 'Breite Str 2a',
         'lat': 52.57221552434196,
         'lng': 13.414013135417626,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57221552434196,
           'lng': 13.414013135417626}],
         'distance': 485,
         'postalCode': '13187',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Breite Str 2a', '13187 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e7b3154b8f7c102861c6382-11'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f744467db32a3b54ac1'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Vinetastraße',
   'headerFullLocation': 'Vinetastraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.568800004500005,
     'lng': 13.429289075374083},
    'sw': {'lat': 52.5597999955, 'lng': 13.414510924625919}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54e75a7c498eb6cbbfcedf52',
        'name': 'Café Sahnehäubchen',
        'location': {'lat': 52.56438700288994,
         'lng': 13.421584619066145,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.56438700288994,
           'lng': 13.421584619066145}],
         'distance': 23,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54e75a7c498eb6cbbfcedf52-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f754769b85071ac9eb1'},
  'response': {'headerLocation': 'Leopoldplatz',
   'headerFullLocation': 'Leopoldplatz, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.553600004500005,
     'lng': 13.37288651593101},
    'sw': {'lat': 52.5445999955, 'lng': 13.358113484068992}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5af8443d7e4b4e0030a38528',
        'name': 'Motte',
        'location': {'address': 'Malplaquetstrasse',
         'lat': 52.549521,
         'lng': 13.361872,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.549521,
           'lng': 13.361872}],
         'distance': 250,
         'cc': 'DE',
         'neighborhood': 'Leopoldplatz',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Malplaquetstrasse', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5af8443d7e4b4e0030a38528-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ebbe7089a52d00625143d5b',
        'name': 'Café Largo',
        'location': {'address': 'Malplaquetstr. 33',
         'crossStreet': 'Utrechter Str.',
         'lat': 52.55069431563843,
         'lng': 13.359548799632643,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55069431563843,
           'lng': 13.359548799632643}],
         'distance': 440,
         'postalCode': '13347',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Malplaquetstr. 33 (Utrechter Str.)',
          '13347 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ebbe7089a52d00625143d5b-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0833fcf964a520290623e3',
        'name': 'Auf der Suche nach dem verlorenen Glück',
        'location': {'address': 'Nazarethkirchstr. 43',
         'lat': 52.54895295253606,
         'lng': 13.361233553708391,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54895295253606,
           'lng': 13.361233553708391}],
         'distance': 289,
         'postalCode': '13347',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Nazarethkirchstr. 43',
          '13347 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0833fcf964a520290623e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c4c219ac9e4ef3b299a3a11',
        'name': 'Bäckerei & Café Josef',
        'location': {'address': 'Reinickendorfer Str. 51',
         'lat': 52.55107131447317,
         'lng': 13.368043899536133,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55107131447317,
           'lng': 13.368043899536133}],
         'distance': 278,
         'postalCode': '13347',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reinickendorfer Str. 51',
          '13347 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c4c219ac9e4ef3b299a3a11-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e7c7422b8031e6cdee63a56',
        'name': 'Tchibo',
        'location': {'address': 'Müllerstr. 47',
         'lat': 52.545964942500596,
         'lng': 13.361672085085868,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.545964942500596,
           'lng': 13.361672085085868}],
         'distance': 434,
         'postalCode': '13349',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Müllerstr. 47', '13349 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e7c7422b8031e6cdee63a56-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7535436f34a07d0be9'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schillerpark',
   'headerFullLocation': 'Schillerpark, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.5625000045, 'lng': 13.354688014273993},
    'sw': {'lat': 52.5534999955, 'lng': 13.339911985726008}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c078ffe0ed3c9284ea9797d',
        'name': "Gilmore's",
        'location': {'lat': 52.557158048939165,
         'lng': 13.340450306010485,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.557158048939165,
           'lng': 13.340450306010485}],
         'distance': 472,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c078ffe0ed3c9284ea9797d-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5783a830cd10361b6e7e7fc9',
        'name': 'Moccachino (Schillerpark)',
        'location': {'lat': 52.558364,
         'lng': 13.351616,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.558364,
           'lng': 13.351616}],
         'distance': 294,
         'postalCode': '13349',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['13349 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5783a830cd10361b6e7e7fc9-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e9688b0b8f7d8c690de1118',
        'name': 'Café Tara',
        'location': {'address': 'Müllerstr. 113a',
         'lat': 52.55571461971134,
         'lng': 13.3426869356019,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55571461971134,
           'lng': 13.3426869356019}],
         'distance': 402,
         'postalCode': '13349',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Müllerstr. 113a',
          '13349 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e9688b0b8f7d8c690de1118-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f753e071546b3b25839'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Rehberge',
   'headerFullLocation': 'Rehberge, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5552000045, 'lng': 13.340186785238089},
    'sw': {'lat': 52.5461999955, 'lng': 13.325413214761912}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50718287e4b02bfe662a736d',
        'name': 'Schatulle',
        'location': {'lat': 52.554296,
         'lng': 13.331135,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.554296,
           'lng': 13.331135}],
         'distance': 415,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50718287e4b02bfe662a736d-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f76c699df34c85ffc22'},
  'response': {'headerLocation': 'Sprengelkiez',
   'headerFullLocation': 'Sprengelkiez, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.546100004500005,
     'lng': 13.356885253892543},
    'sw': {'lat': 52.5370999955, 'lng': 13.342114746107459}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '583ebf69c7ec6b135469cdf8',
        'name': 'Eiskult Wedding',
        'location': {'address': 'Fehmarner Straße 20',
         'lat': 52.54028,
         'lng': 13.349529,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54028,
           'lng': 13.349529}],
         'distance': 146,
         'postalCode': '13353',
         'cc': 'DE',
         'neighborhood': 'Sprengelkiez',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fehmarner Straße 20',
          '13353 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-583ebf69c7ec6b135469cdf8-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '558a9423498efce8c348ae38',
        'name': 'Lost-Place Shop',
        'location': {'lat': 52.54101975889071,
         'lng': 13.348464597509768,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54101975889071,
           'lng': 13.348464597509768}],
         'distance': 95,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-558a9423498efce8c348ae38-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5135c5f5e4b0afedea2ff095',
        'name': 'Baguetteria',
        'location': {'lat': 52.542035695343294,
         'lng': 13.348888163947558,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.542035695343294,
           'lng': 13.348888163947558}],
         'distance': 63,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5135c5f5e4b0afedea2ff095-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dfc58f4ae6033b2a4745611',
        'name': 'Dazwischen',
        'location': {'address': 'Torfstr. 16',
         'lat': 52.54150315194125,
         'lng': 13.350528020121335,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54150315194125,
           'lng': 13.350528020121335}],
         'distance': 70,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Torfstr. 16', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dfc58f4ae6033b2a4745611-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f76d91d7d1d49471985'},
  'response': {'headerLocation': 'Humboldthain',
   'headerFullLocation': 'Humboldthain, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.546100004500005,
     'lng': 13.397785253892541},
    'sw': {'lat': 52.5370999955, 'lng': 13.383014746107458}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54cce341498e1f08d79ac0b2',
        'name': 'My Café',
        'location': {'address': 'Brunnenstr. 85',
         'crossStreet': 'Rügener Straße',
         'lat': 52.54412567633579,
         'lng': 13.391534585854686,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54412567633579,
           'lng': 13.391534585854686}],
         'distance': 291,
         'postalCode': '13355',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brunnenstr. 85 (Rügener Straße)',
          '13355 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54cce341498e1f08d79ac0b2-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c595b042fa89c7474a11323',
        'name': 'Freysinn',
        'location': {'address': 'Jasmunder Str. 5',
         'crossStreet': 'Usedomer Str.',
         'lat': 52.53958224408168,
         'lng': 13.388077852841825,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.53958224408168,
           'lng': 13.388077852841825}],
         'distance': 274,
         'postalCode': '13335',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jasmunder Str. 5 (Usedomer Str.)',
          '13335 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c595b042fa89c7474a11323-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '592bd269cad1b657307e201f',
        'name': 'Fitzcarraldo Cafe',
        'location': {'address': 'Wattstrasse 11',
         'lat': 52.541172,
         'lng': 13.390611,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.541172,
           'lng': 13.390611}],
         'distance': 49,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wattstrasse 11', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-592bd269cad1b657307e201f-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '588a07d9158b964a9c35b360',
        'name': 'Unicorn.Canteen',
        'location': {'address': 'Brunnenstr. 65',
         'lat': 52.540751,
         'lng': 13.394369,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.540751,
           'lng': 13.394369}],
         'distance': 284,
         'postalCode': '13355',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brunnenstr. 65',
          '13355 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-588a07d9158b964a9c35b360-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51bd82dd498ed2fde4612c47',
        'name': 'Cafe Wimpernboutique',
        'location': {'address': 'Brunnenstrasse 57',
         'lat': 52.5392373032118,
         'lng': 13.395480811827547,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5392373032118,
           'lng': 13.395480811827547}],
         'distance': 433,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Brunnenstrasse 57', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51bd82dd498ed2fde4612c47-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f76f5f91049c0f84719'},
  'response': {'headerLocation': 'Humboldthain',
   'headerFullLocation': 'Humboldthain, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.5547000045, 'lng': 13.390186701076898},
    'sw': {'lat': 52.545699995499994, 'lng': 13.375413298923101}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f368850e4b0edf91bf42b2c',
        'name': 'Tchibo',
        'location': {'address': 'Badstr. 4',
         'lat': 52.54981617588424,
         'lng': 13.388591669441327,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54981617588424,
           'lng': 13.388591669441327}],
         'distance': 394,
         'postalCode': '13357',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Badstr. 4', '13357 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f368850e4b0edf91bf42b2c-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c4aaf0346240f477a253df2',
        'name': 'Lichtburg',
        'location': {'address': 'Behmstr. 9',
         'lat': 52.55024598896703,
         'lng': 13.388060612939862,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55024598896703,
           'lng': 13.388060612939862}],
         'distance': 356,
         'postalCode': '13357',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Behmstr. 9', '13357 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '507953955'}},
       'referralId': 'e-0-4c4aaf0346240f477a253df2-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54aead6b498eb893c9ed343c',
        'name': 'Kız Kulesi',
        'location': {'address': 'Badstr. 12',
         'lat': 52.55053132739258,
         'lng': 13.384896916999402,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55053132739258,
           'lng': 13.384896916999402}],
         'distance': 146,
         'postalCode': '13357',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Badstr. 12', '13357 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54aead6b498eb893c9ed343c-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57d4fc6b498e5a4997252009',
        'name': 'Coffee & Vino',
        'location': {'address': 'Badstr. 44',
         'lat': 52.55286856030143,
         'lng': 13.37848037481308,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55286856030143,
           'lng': 13.37848037481308}],
         'distance': 416,
         'postalCode': '13357',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Badstr. 44', '13357 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57d4fc6b498e5a4997252009-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f77d9a71631446be4ec'},
  'response': {'headerLocation': 'Gesundbrunnen',
   'headerFullLocation': 'Gesundbrunnen, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.5644000045, 'lng': 13.392488334246801},
    'sw': {'lat': 52.5553999955, 'lng': 13.377711665753198}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '599091d54940bc65f08849a7',
        'name': 'Rosa Parks Café',
        'location': {'address': 'Soldiner Str. 32',
         'lat': 52.559296,
         'lng': 13.384547,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.559296,
           'lng': 13.384547}],
         'distance': 76,
         'postalCode': '13359',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Soldiner Str. 32',
          '13359 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-599091d54940bc65f08849a7-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a87f0ad840fc24cf48f1c42',
        'name': 'Baobab',
        'location': {'address': 'Soldiner Straße 41',
         'lat': 52.56016,
         'lng': 13.381299,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.56016,
           'lng': 13.381299}],
         'distance': 258,
         'postalCode': '13359',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Soldiner Straße 41',
          '13359 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a87f0ad840fc24cf48f1c42-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5391453d498e70fb6bf8044c',
        'name': 'Café La Tortuga',
        'location': {'address': 'Koloniestr. 24',
         'crossStreet': 'Osloer Str.',
         'lat': 52.55818410537103,
         'lng': 13.380437195718159,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55818410537103,
           'lng': 13.380437195718159}],
         'distance': 368,
         'postalCode': '13359',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Koloniestr. 24 (Osloer Str.)',
          '13359 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5391453d498e70fb6bf8044c-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '574823bb498efb864a70fc40',
        'name': 'Dodici Café XII',
        'location': {'address': 'Osloerstr.18',
         'lat': 52.55604202705678,
         'lng': 13.383269448735605,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55604202705678,
           'lng': 13.383269448735605}],
         'distance': 446,
         'postalCode': '13359',
         'cc': 'DE',
         'city': 'Gesundbrunnen',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Osloerstr.18',
          '13359 Gesundbrunnen',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-574823bb498efb864a70fc40-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5071c181e4b0c9f5d070e7e7',
        'name': 'Reenas Teehaus',
        'location': {'lat': 52.55592347520476,
         'lng': 13.387207684229589,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.55592347520476,
           'lng': 13.387207684229589}],
         'distance': 465,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5071c181e4b0c9f5d070e7e7-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f77f80c210a28c96eb1'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Scharnweberstraße',
   'headerFullLocation': 'Scharnweberstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.578400004500004,
     'lng': 13.32979069304659},
    'sw': {'lat': 52.5693999955, 'lng': 13.31500930695341}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a390ba4345cbe568112a3e3',
        'name': "Victoria's Café",
        'location': {'address': 'Auguste-Viktoria-Allee 81',
         'lat': 52.57022642,
         'lng': 13.32117276,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.57022642,
           'lng': 13.32117276}],
         'distance': 417,
         'postalCode': '13403',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Auguste-Viktoria-Allee 81',
          '13403 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '558606758'}},
       'referralId': 'e-0-5a390ba4345cbe568112a3e3-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7835436f34a07d16f9'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Flughafen Tegel',
   'headerFullLocation': 'Flughafen Tegel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.564100004500006,
     'lng': 13.304088283722395},
    'sw': {'lat': 52.5550999955, 'lng': 13.289311716277604}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f784467db32a3b55a31'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Residenzstraße',
   'headerFullLocation': 'Residenzstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5772000045, 'lng': 13.358590490787446},
    'sw': {'lat': 52.568199995499995, 'lng': 13.343809509212555}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7883e39e1eddb14e95'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Residenzstraße',
   'headerFullLocation': 'Residenzstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.572400004500004,
     'lng': 13.378789681893968},
    'sw': {'lat': 52.5633999955, 'lng': 13.36401031810603}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54a7d577498ee573eff0f357',
        'name': 'Cafe KaNa',
        'location': {'address': 'Residenzstraße 115',
         'lat': 52.567894257438255,
         'lng': 13.369492440997336,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.567894257438255,
           'lng': 13.369492440997336}],
         'distance': 129,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Residenzstraße 115', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54a7d577498ee573eff0f357-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5d4b14f72d0dc000075b6482',
        'name': 'Taxi Treff By Hakan',
        'location': {'address': 'Reginhard Str.',
         'crossStreet': 'schwap str.',
         'lat': 52.5655,
         'lng': 13.373444,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5655,
           'lng': 13.373444}],
         'distance': 300,
         'postalCode': '13409',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reginhard Str. (schwap str.)',
          '13409 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5d4b14f72d0dc000075b6482-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f78dfad1e14df2499fd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wittenau',
   'headerFullLocation': 'Wittenau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.6065000045, 'lng': 13.35299543337625},
    'sw': {'lat': 52.597499995499994, 'lng': 13.338204566623748}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7983e39e1eddb1510b'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wittenau',
   'headerFullLocation': 'Wittenau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5950000045, 'lng': 13.335793492433835},
    'sw': {'lat': 52.585999995499996, 'lng': 13.321006507566166}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f79526d023dffc71c98'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Märkisches Viertel',
   'headerFullLocation': 'Märkisches Viertel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.6021000045, 'lng': 13.36579469059927},
    'sw': {'lat': 52.5930999955, 'lng': 13.35100530940073}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b588aa5f964a520f15c28e3',
        'name': 'Blixen Coffee Shop',
        'location': {'address': 'Wilhelmsruher Damm 140',
         'lat': 52.59730826583849,
         'lng': 13.355109453256432,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.59730826583849,
           'lng': 13.355109453256432}],
         'distance': 224,
         'postalCode': '13439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wilhelmsruher Damm 140',
          '13439 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b588aa5f964a520f15c28e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '506b1e25e4b05fc9630736b6',
        'name': 'Tchibo',
        'location': {'lat': 52.598520596991015,
         'lng': 13.355050583551474,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.598520596991015,
           'lng': 13.355050583551474}],
         'distance': 248,
         'postalCode': '13439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['13439 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-506b1e25e4b05fc9630736b6-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51e00a4a498e717289d21e72',
        'name': 'BeInside',
        'location': {'lat': 52.59851290636675,
         'lng': 13.354913354801965,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.59851290636675,
           'lng': 13.354913354801965}],
         'distance': 256,
         'postalCode': '13439',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['13439 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51e00a4a498e717289d21e72-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f79526d023dffc71e1c'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Frohnau',
   'headerFullLocation': 'Frohnau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.6444000045, 'lng': 13.297001839379217},
    'sw': {'lat': 52.635399995499995, 'lng': 13.282198160620784}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7a71cf843322f43ed7'},
  'response': {'headerLocation': 'Hermsdorf',
   'headerFullLocation': 'Hermsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.6216000045, 'lng': 13.314897983918819},
    'sw': {'lat': 52.6125999955, 'lng': 13.30010201608118}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5eb66aa29c000d00082349f9',
        'name': 'Zwei Kraniche',
        'location': {'lat': 52.618195,
         'lng': 13.306585,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.618195,
           'lng': 13.306585}],
         'distance': 136,
         'postalCode': '13467',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['13467 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5eb66aa29c000d00082349f9-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e4bb0b822713bd908c0f3d1',
        'name': 'Tchibo',
        'location': {'address': 'Heinsestr. 49',
         'lat': 52.61867007276572,
         'lng': 13.305301666259766,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.61867007276572,
           'lng': 13.305301666259766}],
         'distance': 229,
         'postalCode': '13467',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Heinsestr. 49', '13467 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e4bb0b822713bd908c0f3d1-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fd748b6e4b02f54a4e4655a',
        'name': 'zeitgenuss',
        'location': {'lat': 52.6192551011756,
         'lng': 13.308770580943895,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.6192551011756,
           'lng': 13.308770580943895}],
         'distance': 254,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fd748b6e4b02f54a4e4655a-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e2fc5157d8bf59d2919ff28',
        'name': 'Café Fellbach',
        'location': {'address': 'Fellbacher Str. 3',
         'lat': 52.61441464816871,
         'lng': 13.307010779597773,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.61441464816871,
           'lng': 13.307010779597773}],
         'distance': 300,
         'postalCode': '13467',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Fellbacher Str. 3',
          '13467 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e2fc5157d8bf59d2919ff28-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7a3e071546b3b26b49'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Lübars',
   'headerFullLocation': 'Lübars, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.6164000045, 'lng': 13.349597105329698},
    'sw': {'lat': 52.607399995499996, 'lng': 13.334802894670302}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7ac656a10ca6ab7df7'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Schulzendorf',
   'headerFullLocation': 'Schulzendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.616700004500004,
     'lng': 13.256197156010204},
    'sw': {'lat': 52.6076999955, 'lng': 13.241402843989794}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52497da311d281ed6ef3e713',
        'name': 'Cafe am Marktplatz',
        'location': {'lat': 52.60982894897461,
         'lng': 13.24914836883545,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.60982894897461,
           'lng': 13.24914836883545}],
         'distance': 264,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52497da311d281ed6ef3e713-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7bc699df34c86010d1'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tegel',
   'headerFullLocation': 'Tegel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5884000045, 'lng': 13.24779237909621},
    'sw': {'lat': 52.5793999955, 'lng': 13.233007620903788}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7ba5421e17cced4427'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tegel',
   'headerFullLocation': 'Tegel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.581000004500005,
     'lng': 13.27909113132384},
    'sw': {'lat': 52.5719999955, 'lng': 13.264308868676158}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7b526d023dffc72565'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Tegel',
   'headerFullLocation': 'Tegel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5937000045, 'lng': 13.30799327310578},
    'sw': {'lat': 52.584699995499996, 'lng': 13.29320672689422}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7cc656a10ca6ab82dd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Spandau',
   'headerFullLocation': 'Spandau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5355000045, 'lng': 13.186783471162519},
    'sw': {'lat': 52.5264999955, 'lng': 13.17201652883748}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7cd9a71631446bfa23'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Spandau',
   'headerFullLocation': 'Spandau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.5482000045, 'lng': 13.189785607207083},
    'sw': {'lat': 52.5391999955, 'lng': 13.175014392792916}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a819c1e2bf9a97d77a13b13',
        'name': 'BaristaSoul',
        'location': {'address': 'An der Kappe 114a',
         'lat': 52.5406712855721,
         'lng': 13.179699182510376,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5406712855721,
           'lng': 13.179699182510376}],
         'distance': 383,
         'postalCode': '13583',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['An der Kappe 114a',
          '13583 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '478099764'}},
       'referralId': 'e-0-5a819c1e2bf9a97d77a13b13-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7ce5bf882cda8bfa82'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Spandau',
   'headerFullLocation': 'Spandau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.5522000045, 'lng': 13.212286280308145},
    'sw': {'lat': 52.5431999955, 'lng': 13.197513719691855}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '566a0719498e24e2e6cd0c72',
        'name': 'Amira Shisha Lounge',
        'location': {'lat': 52.548232,
         'lng': 13.200954,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.548232,
           'lng': 13.200954}],
         'distance': 273,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-566a0719498e24e2e6cd0c72-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57d58b92498e9a46ad523ae2',
        'name': 'Uferpalais',
        'location': {'lat': 52.546766,
         'lng': 13.212093,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.546766,
           'lng': 13.212093}],
         'distance': 497,
         'postalCode': '13585',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['13585 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57d58b92498e9a46ad523ae2-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7da5421e17cced4acf'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Johannesstift',
   'headerFullLocation': 'Johannesstift, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.581200004500005,
     'lng': 13.192791165040259},
    'sw': {'lat': 52.5721999955, 'lng': 13.17800883495974}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7d32abda5e08ff39dd'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Spandau',
   'headerFullLocation': 'Spandau, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.561500004500004,
     'lng': 13.174987845881645},
    'sw': {'lat': 52.5524999955, 'lng': 13.160212154118355}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7dd859ad1d9fe290a0'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Staaken',
   'headerFullLocation': 'Staaken, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.539000004500004,
     'lng': 13.147884059676661},
    'sw': {'lat': 52.5299999955, 'lng': 13.133115940323338}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5713b258498e63ffaf100883',
        'name': 'MiMundo Familiencafé',
        'location': {'address': 'Nennhauser Damm',
         'crossStreet': 'Hauptstraße',
         'lat': 52.530243,
         'lng': 13.140661,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.530243,
           'lng': 13.140661}],
         'distance': 474,
         'postalCode': '13591',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Nennhauser Damm (Hauptstraße)',
          '13591 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5713b258498e63ffaf100883-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7d92e219640df2d736'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wilhelmstadt',
   'headerFullLocation': 'Wilhelmstadt, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5193000045, 'lng': 13.174580748762965},
    'sw': {'lat': 52.5102999955, 'lng': 13.159819251237034}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7edfad1e14df24aef2'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Pichelsdorf',
   'headerFullLocation': 'Pichelsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.516100004500004,
     'lng': 13.203580211312229},
    'sw': {'lat': 52.5070999955, 'lng': 13.18881978868777}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b0427c8418686002c7e1f15',
        'name': 'SpandoWienerin Café & Bistro',
        'location': {'address': 'Alt-Pichelsdorf 21',
         'lat': 52.511387,
         'lng': 13.199173,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.511387,
           'lng': 13.199173}],
         'distance': 202,
         'postalCode': '13595',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alt-Pichelsdorf 21',
          '13595 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b0427c8418686002c7e1f15-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '521383d0498e26219fea2237',
        'name': 'kaffeemafia',
        'location': {'address': 'Alt-Pichelsdorf 1a',
         'lat': 52.51205269120575,
         'lng': 13.201023816326554,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51205269120575,
           'lng': 13.201023816326554}],
         'distance': 330,
         'postalCode': '13595',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Alt-Pichelsdorf 1a',
          '13595 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-521383d0498e26219fea2237-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55630f90498e8edc535cf0b0',
        'name': 'Kleines Café',
        'location': {'lat': 52.51583018667853,
         'lng': 13.198009562666698,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51583018667853,
           'lng': 13.198009562666698}],
         'distance': 486,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55630f90498e8edc535cf0b0-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7e368fe8722518dc2d'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Pichelsdorf',
   'headerFullLocation': 'Pichelsdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5317000045, 'lng': 13.226882832341705},
    'sw': {'lat': 52.5226999955, 'lng': 13.212117167658295}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7ed859ad1d9fe2954b'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Haselhorst',
   'headerFullLocation': 'Haselhorst, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.550800004500005,
     'lng': 13.242386044704723},
    'sw': {'lat': 52.5417999955, 'lng': 13.227613955295276}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50795ea9e4b00eb8611e8d6a',
        'name': 'KaffeeAgentur',
        'location': {'address': 'Lilli Palmer Promenade',
         'lat': 52.54248860853789,
         'lng': 13.238262475903806,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.54248860853789,
           'lng': 13.238262475903806}],
         'distance': 478,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Lilli Palmer Promenade',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50795ea9e4b00eb8611e8d6a-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7fd91d7d1d49473c72'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Charlottenburg-Wilmersdorf',
   'headerFullLocation': 'Charlottenburg-Wilmersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5443000045, 'lng': 13.306484951086306},
    'sw': {'lat': 52.5352999955, 'lng': 13.291715048913693}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7f4360832ce8b46e39'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Siemensstadt',
   'headerFullLocation': 'Siemensstadt, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.5467000045, 'lng': 13.273485354835092},
    'sw': {'lat': 52.5376999955, 'lng': 13.258714645164908}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7f726940047d50a69c'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Neu-Westend',
   'headerFullLocation': 'Neu-Westend, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.525300004500004,
     'lng': 13.27568175675618},
    'sw': {'lat': 52.5162999955, 'lng': 13.26091824324382}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f7ff2dca11a89dbe4bd'},
  'response': {'headerLocation': 'Neu-Westend',
   'headerFullLocation': 'Neu-Westend, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.5201000045, 'lng': 13.26428088314148},
    'sw': {'lat': 52.5110999955, 'lng': 13.24951911685852}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b851a2af964a520164c31e3',
        'name': 'Wiener Conditorei Caffeehaus am Steubenplatz',
        'location': {'address': 'Reichsstr. 81',
         'lat': 52.51607075125315,
         'lng': 13.260251416623968,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51607075125315,
           'lng': 13.260251416623968}],
         'distance': 233,
         'postalCode': '14052',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reichsstr. 81', '14052 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b851a2af964a520164c31e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f68b01be4b0cdd88fd78b9d',
        'name': 'Tchibo',
        'location': {'address': 'Reichsstrasse 84',
         'lat': 52.51549266022005,
         'lng': 13.261978795234624,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51549266022005,
           'lng': 13.261978795234624}],
         'distance': 344,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reichsstrasse 84', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f68b01be4b0cdd88fd78b9d-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4da95fed6a2303012ef2d4d7',
        'name': 'Cafe Kuhn',
        'location': {'address': 'Reichsstraße',
         'crossStreet': 'Rüsternallee',
         'lat': 52.51555307825961,
         'lng': 13.262388034011481,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51555307825961,
           'lng': 13.262388034011481}],
         'distance': 371,
         'postalCode': '14050',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reichsstraße (Rüsternallee)',
          '14050 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4da95fed6a2303012ef2d4d7-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '522f32d511d26d67a92ccc3b',
        'name': 'Cafe winzig',
        'location': {'lat': 52.51386734920359,
         'lng': 13.262682444577408,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51386734920359,
           'lng': 13.262682444577408}],
         'distance': 436,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-522f32d511d26d67a92ccc3b-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f80d9a71631446c09e9'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Pichelsberg',
   'headerFullLocation': 'Pichelsberg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.520400004500004,
     'lng': 13.246080933535053},
    'sw': {'lat': 52.5113999955, 'lng': 13.231319066464946}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f80e6b2a169842d0527'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Heerstraße',
   'headerFullLocation': 'Heerstraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.506500004500005,
     'lng': 13.252078599567618},
    'sw': {'lat': 52.4974999955, 'lng': 13.237321400432382}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f80e2d2433c21bbc630'},
  'response': {'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 9,
   'suggestedBounds': {'ne': {'lat': 52.5118000045, 'lng': 13.29527948927229},
    'sw': {'lat': 52.5027999955, 'lng': 13.280520510727712}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc99754937ca593af00a692',
        'name': 'Bootshaus Stella am Lietzensee',
        'location': {'address': 'Witzlebenplatz 1',
         'lat': 52.50871848046555,
         'lng': 13.29255974476357,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50871848046555,
           'lng': 13.29255974476357}],
         'distance': 353,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Witzlebenplatz 1',
          '14057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc99754937ca593af00a692-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d611ba1ef378cfae07f86a6',
        'name': 'Pianocafé am Lietzensee',
        'location': {'address': 'Neue Kantstr. 20',
         'lat': 52.50636296742098,
         'lng': 13.285157707953752,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50636296742098,
           'lng': 13.285157707953752}],
         'distance': 213,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Neue Kantstr. 20',
          '14057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d611ba1ef378cfae07f86a6-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50e2c3b3e4b0a78b0d05e4b0',
        'name': 'Cafe Phönix',
        'location': {'address': 'Witzlebenstr. 21',
         'crossStreet': 'Suarezstr. 46',
         'lat': 52.50525665283203,
         'lng': 13.293815612792969,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50525665283203,
           'lng': 13.293815612792969}],
         'distance': 460,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Witzlebenstr. 21 (Suarezstr. 46)',
          '14057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '49274701'}},
       'referralId': 'e-0-50e2c3b3e4b0a78b0d05e4b0-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52f60fd9498e0d151ee50d81',
        'name': 'espresso mania',
        'location': {'address': 'Kaiserdamm 15',
         'lat': 52.51043093318507,
         'lng': 13.28814363432583,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51043093318507,
           'lng': 13.28814363432583}],
         'distance': 348,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kaiserdamm 15', '14057 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52f60fd9498e0d151ee50d81-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4badf4bdf964a5207a753be3',
        'name': 'Manstein',
        'location': {'address': 'Witzlebenstraße 32',
         'lat': 52.509003,
         'lng': 13.294212,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.509003,
           'lng': 13.294212}],
         'distance': 467,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Witzlebenstraße 32',
          '14057 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4badf4bdf964a5207a753be3-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '533c2081498eab026d449a0c',
        'name': 'chicco di caffè',
        'location': {'address': 'Kaiserdamm 90',
         'lat': 52.50974232231976,
         'lng': 13.282976374046251,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50974232231976,
           'lng': 13.282976374046251}],
         'distance': 430,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Kaiserdamm 90', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-533c2081498eab026d449a0c-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '52653cce11d2127e5b8e9edb',
        'name': 'Café Suarez',
        'location': {'address': 'Suarezstr. 21',
         'lat': 52.5062423192634,
         'lng': 13.29452788218492,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.5062423192634,
           'lng': 13.29452788218492}],
         'distance': 464,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Suarezstr. 21', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-52653cce11d2127e5b8e9edb-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fb4f225e4b0eec2052a0efd',
        'name': 'piKant',
        'location': {'lat': 52.50614547729492,
         'lng': 13.294577598571777,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50614547729492,
           'lng': 13.294577598571777}],
         'distance': 470,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fb4f225e4b0eec2052a0efd-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c4c3989c668e21e1c9931fb',
        'name': 'Stattcafe',
        'location': {'address': 'Suarezstr 31',
         'lat': 52.50325083326409,
         'lng': 13.291116593496081,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.50325083326409,
           'lng': 13.291116593496081}],
         'distance': 500,
         'postalCode': '14057',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Suarezstr 31', '14057 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c4c3989c668e21e1c9931fb-8'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f8132abda5e08ff498f'},
  'response': {'headerLocation': 'Charlottenburg',
   'headerFullLocation': 'Charlottenburg, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 4,
   'suggestedBounds': {'ne': {'lat': 52.5250000045, 'lng': 13.295181706348059},
    'sw': {'lat': 52.515999995499996, 'lng': 13.280418293651943}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4cb19a491168a093c17d3423',
        'name': 'Café Reet',
        'location': {'address': 'Klausenerplatz 5',
         'lat': 52.51812725890996,
         'lng': 13.292684555053711,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51812725890996,
           'lng': 13.292684555053711}],
         'distance': 423,
         'postalCode': '14059',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Klausenerplatz 5',
          '14059 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4cb19a491168a093c17d3423-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4d917a2c7379b60c1e24ce07',
        'name': 'Layali Om Kalthum Cafe',
        'location': {'address': 'Spandauer Damm 65',
         'lat': 52.518743,
         'lng': 13.28783,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.518743,
           'lng': 13.28783}],
         'distance': 195,
         'postalCode': '14059',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Spandauer Damm 65',
          '14059 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4d917a2c7379b60c1e24ce07-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a3a179dc4df1d7baf4d2445',
        'name': 'Joli Café',
        'location': {'address': 'Heubnerweg',
         'lat': 52.523096,
         'lng': 13.288437,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.523096,
           'lng': 13.288437}],
         'distance': 292,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Heubnerweg', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a3a179dc4df1d7baf4d2445-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bdd86a1645e0f47e7a46b19',
        'name': 'Carpe Diem Bistro',
        'location': {'address': 'Spandauer Damm 102',
         'lat': 52.51847247414217,
         'lng': 13.281805522018324,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51847247414217,
           'lng': 13.281805522018324}],
         'distance': 464,
         'postalCode': '14059',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Spandauer Damm 102',
          '14059 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bdd86a1645e0f47e7a46b19-3'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f81e76a681dc8ea2925'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Gatow',
   'headerFullLocation': 'Gatow, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4753000045, 'lng': 13.158973367684764},
    'sw': {'lat': 52.466299995499995, 'lng': 13.144226632315236}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f81f80c210a28c9970c'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wannsee',
   'headerFullLocation': 'Wannsee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4242000045, 'lng': 13.151364819520856},
    'sw': {'lat': 52.4151999955, 'lng': 13.136635180479145}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4af5622df964a520fcf821e3',
        'name': 'Hofcafé',
        'location': {'address': 'Chausseestr. 15',
         'crossStreet': 'Mutter Fourage',
         'lat': 52.416676,
         'lng': 13.146253533333335,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.416676,
           'lng': 13.146253533333335}],
         'distance': 369,
         'postalCode': '14109',
         'cc': 'DE',
         'neighborhood': 'Wannsee',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Chausseestr. 15 (Mutter Fourage)',
          '14109 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4af5622df964a520fcf821e3-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f82dfad1e14df24bf6c'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Nikolassee',
   'headerFullLocation': 'Nikolassee, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4508000045, 'lng': 13.209969266043688},
    'sw': {'lat': 52.4417999955, 'lng': 13.195230733956313}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f82d64a7347252aaac2'},
  'response': {'suggestedFilters': {'header': 'Tap to show:',
    'filters': [{'name': 'Open now', 'key': 'openNow'}]},
   'headerLocation': 'Museumsinsel',
   'headerFullLocation': 'Museumsinsel, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 18,
   'suggestedBounds': {'ne': {'lat': 52.521500004500005,
     'lng': 13.407381118319114},
    'sw': {'lat': 52.5124999955, 'lng': 13.392618881680887}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55782f9e498ee3b164cc75f5',
        'name': 'Pax Coffee',
        'location': {'address': 'Oberwallstraße 20',
         'lat': 52.513906,
         'lng': 13.397219,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.513906,
           'lng': 13.397219}],
         'distance': 392,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Oberwallstraße 20',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55782f9e498ee3b164cc75f5-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54199179498e6e1206f0b810',
        'name': 'Lunch Time',
        'location': {'address': 'Jägerstr. 34',
         'lat': 52.51427792365403,
         'lng': 13.396987908146501,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51427792365403,
           'lng': 13.396987908146501}],
         'distance': 365,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Jägerstr. 34', '10117 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '150176200'}},
       'referralId': 'e-0-54199179498e6e1206f0b810-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b0e18d0f964a520f05423e3',
        'name': 'Balzac Coffee',
        'location': {'address': 'Karl-Liebknecht-Str. 5',
         'crossStreet': 'Spandauer Str.',
         'lat': 52.519681063790664,
         'lng': 13.403686798037004,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519681063790664,
           'lng': 13.403686798037004}],
         'distance': 389,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Karl-Liebknecht-Str. 5 (Spandauer Str.)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b0e18d0f964a520f05423e3-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc46a7474a9a59309bfd5f6',
        'name': 'Einstein Kaffee',
        'location': {'address': 'Am Lustgarten',
         'crossStreet': 'Berliner Dom',
         'lat': 52.518662064439965,
         'lng': 13.401183957757143,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.518662064439965,
           'lng': 13.401183957757143}],
         'distance': 201,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Lustgarten (Berliner Dom)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc46a7474a9a59309bfd5f6-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '500fbae1e4b06b19286e62d2',
        'name': 'Café im Zeughaus (DHM)',
        'location': {'address': 'Unter den Linden 2',
         'lat': 52.517847285596254,
         'lng': 13.397708451165325,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.517847285596254,
           'lng': 13.397708451165325}],
         'distance': 181,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Unter den Linden 2',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-500fbae1e4b06b19286e62d2-4'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5a48a7be75eee46f19ff83bd',
        'name': 'Kaffee Karamell',
        'location': {'address': 'Scharrenstr. 22',
         'lat': 52.51419708479862,
         'lng': 13.405519796740581,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51419708479862,
           'lng': 13.405519796740581}],
         'distance': 487,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Scharrenstr. 22',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5a48a7be75eee46f19ff83bd-5'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6df5f2e4b08610771271c9',
        'name': 'KugelEi-Café',
        'location': {'lat': 52.516566,
         'lng': 13.406955,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516566,
           'lng': 13.406955}],
         'distance': 473,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6df5f2e4b08610771271c9-6'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4eedf41d9a52993fb7cfb1ef',
        'name': 'Allegretto Caffè',
        'location': {'address': 'Bodestr. 3',
         'lat': 52.519833,
         'lng': 13.398358,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.519833,
           'lng': 13.398358}],
         'distance': 334,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bodestr. 3', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4eedf41d9a52993fb7cfb1ef-7'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b6850c9f964a52045712be3',
        'name': 'Restaurant Cum Laude',
        'location': {'address': 'Universitätsstr. 4',
         'lat': 52.51855135055943,
         'lng': 13.394509655752087,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51855135055943,
           'lng': 13.394509655752087}],
         'distance': 410,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Universitätsstr. 4',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b6850c9f964a52045712be3-8'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '50f6c465e4b052e422df4aa8',
        'name': 'Café im Alten Museum',
        'location': {'address': 'Am Lustgarten',
         'lat': 52.51936767697486,
         'lng': 13.39857816696167,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51936767697486,
           'lng': 13.39857816696167}],
         'distance': 280,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Lustgarten', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-50f6c465e4b052e422df4aa8-9'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4b7fcd07f964a5205d3e30e3',
        'name': 'the coffee shop',
        'location': {'address': 'Hausvogteiplatz 13',
         'crossStreet': 'Niederwallstr.',
         'lat': 52.51304581458592,
         'lng': 13.397366344797774,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51304581458592,
           'lng': 13.397366344797774}],
         'distance': 474,
         'postalCode': '10117',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hausvogteiplatz 13 (Niederwallstr.)',
          '10117 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4b7fcd07f964a5205d3e30e3-10'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55f41f40498e7cc71a0d0632',
        'name': 'Domcafé',
        'location': {'address': 'Am Lustgarten 1',
         'lat': 52.51862016607101,
         'lng': 13.401104807853699,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51862016607101,
           'lng': 13.401104807853699}],
         'distance': 195,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Lustgarten 1',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55f41f40498e7cc71a0d0632-11'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4bc06a05f8219c74b083b110',
        'name': 'CafÄ— Pergamon',
        'location': {'address': 'Bodestr. 1-3',
         'lat': 52.520399155853454,
         'lng': 13.396410942077637,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.520399155853454,
           'lng': 13.396410942077637}],
         'distance': 449,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bodestr. 1-3', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4bc06a05f8219c74b083b110-12'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4fe068a8e4b096aa57eefe3e',
        'name': 'Burgcafé',
        'location': {'address': 'Burgstr. 26',
         'crossStreet': 'DG, Raum 506',
         'lat': 52.521019337192,
         'lng': 13.401024341583252,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.521019337192,
           'lng': 13.401024341583252}],
         'distance': 452,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Burgstr. 26 (DG, Raum 506)',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4fe068a8e4b096aa57eefe3e-13'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '57ac57bc498ed153471494a0',
        'name': 'Back Palace',
        'location': {'address': 'Propststraße 1-4',
         'lat': 52.51695,
         'lng': 13.406853,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51695,
           'lng': 13.406853}],
         'distance': 464,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Propststraße 1-4',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-57ac57bc498ed153471494a0-14'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5127e7bee4b03a531599160b',
        'name': 'Gameduell Coffeemaker',
        'location': {'address': 'Taubenstrasse 24',
         'lat': 52.51385670505711,
         'lng': 13.39547288000693,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.51385670505711,
           'lng': 13.39547288000693}],
         'distance': 465,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Taubenstrasse 24', 'Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5127e7bee4b03a531599160b-15'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '572881d6498e8d9e56d37742',
        'name': 'Café & Restaurant Spreeblick',
        'location': {'address': 'Propststr. 9',
         'lat': 52.516152310515814,
         'lng': 13.405863046646118,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.516152310515814,
           'lng': 13.405863046646118}],
         'distance': 408,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Propststr. 9', '10178 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []},
        'venuePage': {'id': '184575676'}},
       'referralId': 'e-0-572881d6498e8d9e56d37742-16'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5b699b2ee96d0c002c832626',
        'name': 'Allegretto Gran Caffè',
        'location': {'address': 'Anna-Louisa-Karsch-Str. 2',
         'lat': 52.52063913439294,
         'lng': 13.401193910758593,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.52063913439294,
           'lng': 13.401193910758593}],
         'distance': 413,
         'postalCode': '10178',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Anna-Louisa-Karsch-Str. 2',
          '10178 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5b699b2ee96d0c002c832626-17'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f82e6b2a169842d0f69'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Zehlendorf',
   'headerFullLocation': 'Zehlendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 2,
   'suggestedBounds': {'ne': {'lat': 52.4413000045, 'lng': 13.245867677201286},
    'sw': {'lat': 52.432299995499996, 'lng': 13.231132322798715}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ba63547f964a520b23b39e3',
        'name': 'Café Krone',
        'location': {'address': 'Argentinische Allee 2',
         'crossStreet': 'Limastr.',
         'lat': 52.4381810599327,
         'lng': 13.233061821513736,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.4381810599327,
           'lng': 13.233061821513736}],
         'distance': 399,
         'postalCode': '14163',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Argentinische Allee 2 (Limastr.)',
          '14163 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ba63547f964a520b23b39e3-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51f52d0d498e29a9db4ac659',
        'name': 'La Piazza',
        'location': {'address': 'Bülowstraße 1–8A',
         'lat': 52.437458314435176,
         'lng': 13.23329327316576,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.437458314435176,
           'lng': 13.23329327316576}],
         'distance': 360,
         'postalCode': '14163',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Bülowstraße 1–8A',
          '14163 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51f52d0d498e29a9db4ac659-1'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f834450ba020e266e36'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Zehlendorf',
   'headerFullLocation': 'Zehlendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4220000045, 'lng': 13.260964452074623},
    'sw': {'lat': 52.412999995499995, 'lng': 13.246235547925378}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f83d859ad1d9fe2a95b'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Drakestraße',
   'headerFullLocation': 'Drakestraße, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4257000045, 'lng': 13.28386507007963},
    'sw': {'lat': 52.4166999955, 'lng': 13.269134929920371}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4f6eec7fe4b0a6b772dd6e9c',
        'name': 'Brunch',
        'location': {'lat': 52.417286,
         'lng': 13.277097,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.417286,
           'lng': 13.277097}],
         'distance': 437,
         'cc': 'DE',
         'country': 'Deutschland',
         'formattedAddress': ['Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1dc931735',
          'name': 'Tea Room',
          'pluralName': 'Tea Rooms',
          'shortName': 'Tea Room',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/tearoom_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4f6eec7fe4b0a6b772dd6e9c-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f83dfad1e14df24c677'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Onkel Toms Hütte',
   'headerFullLocation': 'Onkel Toms Hütte, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.4541000045, 'lng': 13.26466981816516},
    'sw': {'lat': 52.445099995499994, 'lng': 13.249930181834841}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '54d0903b498efee27c8bd10b',
        'name': 'Toms Kaffeerösterei',
        'location': {'address': 'Ladenstr.25-26',
         'crossStreet': 'U-Bahnhof Onkel Toms Hütte',
         'lat': 52.44997786908113,
         'lng': 13.254881515922404,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.44997786908113,
           'lng': 13.254881515922404}],
         'distance': 169,
         'postalCode': '14169',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ladenstr.25-26 (U-Bahnhof Onkel Toms Hütte)',
          '14169 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-54d0903b498efee27c8bd10b-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5abced68872f7d630281fac8',
        'name': 'BrownieBox',
        'location': {'address': 'Ladenstraße 1 (Süd)',
         'lat': 52.449416,
         'lng': 13.252508,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.449416,
           'lng': 13.252508}],
         'distance': 325,
         'postalCode': '14169',
         'cc': 'DE',
         'neighborhood': 'Onkel Toms Hütte',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Ladenstraße 1 (Süd)',
          '14169 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5abced68872f7d630281fac8-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5385a13a498edfec60a1a324',
        'name': 'Ridders Kaffeerösterei',
        'location': {'lat': 52.44891357421875,
         'lng': 13.251691818237305,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.44891357421875,
           'lng': 13.251691818237305}],
         'distance': 388,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5385a13a498edfec60a1a324-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f84a5d23e3a41b0cf0e'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Grunewald',
   'headerFullLocation': 'Grunewald, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4876000045, 'lng': 13.243875429106657},
    'sw': {'lat': 52.4785999955, 'lng': 13.229124570893342}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f84a614367fd9d3c3c7'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Dahlem',
   'headerFullLocation': 'Dahlem, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 1,
   'suggestedBounds': {'ne': {'lat': 52.4634000045, 'lng': 13.290271374720646},
    'sw': {'lat': 52.4543999955, 'lng': 13.275528625279353}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '5c8016e9464d65002cd8b3e7',
        'name': 'Hofcafe Betzhorn',
        'location': {'address': 'Am Schülerheim  6',
         'lat': 52.457639,
         'lng': 13.279404,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.457639,
           'lng': 13.279404}],
         'distance': 275,
         'postalCode': '14195',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Am Schülerheim  6',
          '14195 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-5c8016e9464d65002cd8b3e7-0'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f84c4e5cf3a8392dc0a'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Wilmersdorf',
   'headerFullLocation': 'Wilmersdorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 3,
   'suggestedBounds': {'ne': {'lat': 52.4779000045, 'lng': 13.319173803308106},
    'sw': {'lat': 52.468899995499996, 'lng': 13.304426196691894}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '55e177b1498e7d11eed25f18',
        'name': 'Lotte am Platz',
        'location': {'address': 'Rüdesheimer Platz 1',
         'lat': 52.473191999250005,
         'lng': 13.316996424945875,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.473191999250005,
           'lng': 13.316996424945875}],
         'distance': 353,
         'postalCode': '14197',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rüdesheimer Platz 1',
          '14197 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-55e177b1498e7d11eed25f18-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '58baa10b735a4d22f88403cc',
        'name': 'Jespresso',
        'location': {'address': 'Wiesbadener Straße 33',
         'lat': 52.47225,
         'lng': 13.313746,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47225,
           'lng': 13.313746}],
         'distance': 183,
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Wiesbadener Straße 33',
          'Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-58baa10b735a4d22f88403cc-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4dc3a9b2d4c0ad9c0f5b0aa9',
        'name': 'Coffee Lounge R3',
        'location': {'address': 'Rüdesheimer Str. 3',
         'lat': 52.47410183696356,
         'lng': 13.3145010653956,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47410183696356,
           'lng': 13.3145010653956}],
         'distance': 199,
         'postalCode': '14197',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Rüdesheimer Str. 3',
          '14197 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4dc3a9b2d4c0ad9c0f5b0aa9-2'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f85f2dca11a89dbfa5f'},
  'response': {'headerLocation': 'Schmargendorf',
   'headerFullLocation': 'Schmargendorf, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 5,
   'suggestedBounds': {'ne': {'lat': 52.4822000045, 'lng': 13.302474523908396},
    'sw': {'lat': 52.473199995499996, 'lng': 13.287725476091603}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': [{'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4e46538bc65bd6ffbe8f9b26',
        'name': 'JoCaffè Rösterei',
        'location': {'address': 'Reichenhaller Str. 1',
         'lat': 52.47678777564289,
         'lng': 13.290627732400011,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47678777564289,
           'lng': 13.290627732400011}],
         'distance': 319,
         'postalCode': '14199',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Reichenhaller Str. 1',
          '14199 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4e46538bc65bd6ffbe8f9b26-0'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '51a8f2f6498ef7983d47d58a',
        'name': 'Looms',
        'location': {'address': 'Berkaer Str. 40',
         'crossStreet': 'Kösener Str.',
         'lat': 52.47706417072388,
         'lng': 13.288147842437526,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47706417072388,
           'lng': 13.288147842437526}],
         'distance': 476,
         'postalCode': '14199',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Berkaer Str. 40 (Kösener Str.)',
          '14199 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-51a8f2f6498ef7983d47d58a-1'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4c5ae0c6d3aee21e09bb6b55',
        'name': 'Coffee Oase',
        'location': {'address': 'Breite Str. 32',
         'lat': 52.47481020871978,
         'lng': 13.292175887527808,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47481020871978,
           'lng': 13.292175887527808}],
         'distance': 377,
         'postalCode': '14199',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Breite Str. 32',
          '14199 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d16d941735',
          'name': 'Café',
          'pluralName': 'Cafés',
          'shortName': 'Café',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/cafe_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4c5ae0c6d3aee21e09bb6b55-2'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ee78a740e0175b50b03dc44',
        'name': 'Tchibo',
        'location': {'address': 'Breite Str. 30',
         'lat': 52.474736305840096,
         'lng': 13.292051553726195,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.474736305840096,
           'lng': 13.292051553726195}],
         'distance': 389,
         'postalCode': '14199',
         'cc': 'DE',
         'neighborhood': 'Schmargendorf, Berlin',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Breite Str. 30',
          '14199 Berlin',
          'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ee78a740e0175b50b03dc44-3'},
      {'reasons': {'count': 0,
        'items': [{'summary': 'This spot is popular',
          'type': 'general',
          'reasonName': 'globalInteractionReason'}]},
       'venue': {'id': '4ed3b0db02d5feaa200c862a',
        'name': 'Lancelot - Schmargendorfer Kaffeerösterei',
        'location': {'address': 'Hundekehle 38',
         'lat': 52.47533714082246,
         'lng': 13.290740307339544,
         'labeledLatLngs': [{'label': 'display',
           'lat': 52.47533714082246,
           'lng': 13.290740307339544}],
         'distance': 395,
         'postalCode': '14199',
         'cc': 'DE',
         'city': 'Berlin',
         'state': 'Berlin',
         'country': 'Deutschland',
         'formattedAddress': ['Hundekehle 38', '14199 Berlin', 'Deutschland']},
        'categories': [{'id': '4bf58dd8d48988d1e0931735',
          'name': 'Coffee Shop',
          'pluralName': 'Coffee Shops',
          'shortName': 'Coffee Shop',
          'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_',
           'suffix': '.png'},
          'primary': True}],
        'photos': {'count': 0, 'groups': []}},
       'referralId': 'e-0-4ed3b0db02d5feaa200c862a-4'}]}]}},
 {'meta': {'code': 200, 'requestId': '5fb16f85334c670565cff534'},
  'response': {'warning': {'text': "There aren't a lot of results near you. Try something more general, reset your filters, or expand the search area."},
   'headerLocation': 'Müggelheim',
   'headerFullLocation': 'Müggelheim, Berlin',
   'headerLocationGranularity': 'neighborhood',
   'query': 'coffee shop',
   'totalResults': 0,
   'suggestedBounds': {'ne': {'lat': 52.4045000045, 'lng': 13.72406153089859},
    'sw': {'lat': 52.395499995499996, 'lng': 13.709338469101409}},
   'groups': [{'type': 'Recommended Places',
     'name': 'recommended',
     'items': []}]}}]

Now that we got the JSON files, let's put them into a pd dataframe:

In [485]:
berlin_cafes[0]['response']['groups'][0]['items'][2]['venue']['name']
Out[485]:
'Brasserie La Bonne Franquette'
In [465]:
berlin_cafes[0]['response']['groups'][0]['items'][2]['venue']['location']['postalCode']
Out[465]:
'10115'
In [492]:
cafes=[]
plz_cafes=[]
for i in range (195):
    for j in range (50):
        try:
            cafes.append(berlin_cafes[i]['response']['groups'][0]['items'][j]['venue']['name'])
        except:
            cafes.append('NaN')

for i in range (195):
    for j in range (50):
        try:
            plz_cafes.append(berlin_cafes[i]['response']['groups'][0]['items'][j]['venue']['location']['postalCode'])
        except:
            plz_cafes.append('NaN')            

cafe_dict={'PLZ':plz_cafes,'Venue':cafes}
In [494]:
df_cafe=pd.DataFrame.from_dict(cafe_dict)
df_cafe.head()
Out[494]:
PLZ Venue
0 10115 Oslo Kaffebar
1 NaN Café Bondi
2 10115 Brasserie La Bonne Franquette
3 NaN Espresso House
4 10115 19grams
In [505]:
coffeeshops=[]
plz_coffeeshops=[]
for i in range (195):
    for j in range (50):
        try:
            coffeeshops.append(berlin_coffeshops[i]['response']['groups'][0]['items'][j]['venue']['name'])
        except:
            coffeeshops.append('NaN')

for i in range (195):
    for j in range (50):
        try:
            plz_coffeeshops.append(berlin_coffeshops[i]['response']['groups'][0]['items'][j]['venue']['location']['postalCode'])
        except:
            plz_coffeeshops.append('NaN')            

coffeeshop_dict={'PLZ':plz_coffeeshops,'Venue':coffeeshops}
In [508]:
df_coffeeshop=pd.DataFrame.from_dict(coffeeshop_dict)
df_coffeeshop.head()
Out[508]:
PLZ Venue
0 10115 Oslo Kaffebar
1 10115 R/D
2 10115 19grams
3 10115 The Barn
4 NaN Café Bondi
In [530]:
df_cafes_berlin=pd.concat([df_cafe, df_coffeeshop])
In [535]:
df_cafes_berlin=df_cafes_berlin[df_cafes_berlin.PLZ!='NaN']
In [612]:
df_cafes_berlin=df_cafes_berlin.astype({'PLZ':int})
In [613]:
df_cafes_number=df_cafes_berlin.groupby(['PLZ']).agg({'Venue':'count'})
df_cafes_number.head()
Out[613]:
Venue
PLZ
10115 21
10117 69
10119 68
10178 103
10179 20

Now we have x key dataframes: 1- df_plz 2-df_income 3-df_wahlen_clean 4-df_cafes_number and 5 df_einw_clean for population. We now need to merge them based on PLZ.

In [841]:
df_plz_clean=df_plz[['zipcode', 'latitude', 'longitude']]
df_plz_clean=df_plz_clean.rename(columns={'zipcode':'PLZ'})
df_plz_clean=df_plz_clean.set_index('PLZ')
df_income_clean=df_income[['PLZ', 'income']]
df_income_clean=df_income_clean.astype({'PLZ':int})
df_income_clean=df_income_clean.set_index('PLZ')
In [842]:
df=df_plz_clean.join(df_income_clean) # joined geodata with income figures
In [843]:
df=df.join(df_einw_clean) # joined with population figures
In [844]:
df_wahlen_clean=df_wahlen_clean[['SPD', 'CDU', 'GRÜNE', 'DIE LINKE', 'FDP', 'AfD']]
df=df.join(df_wahlen_clean) # joined with resp. political party % votes
In [845]:
df=df.join(df_cafes_number) # join with number of cafes
In [846]:
df=df.rename(columns={'Einwohner':'population', 'Venue':'number_of_cafes'})
In [855]:
for i in range(len(df['income'])):
    if df.iloc[i,2]=='k.A.':
        df.iloc[i,2]= 2696
In [853]:
# we now need to clean up the income column & convert to float
import math
x=float('nan')
i=0
while i < (len(df['income'])):
    try: 
        if math.isnan(df.iloc[i,2]) == True:
            df.iloc[i,2]= 2696
        else:
            df.iloc[i,2]=df.iloc[i,2]
        i+=1
    except TypeError:
        i+=1
        continue
In [856]:
df=df.astype({'income': float})
In [849]:
df.dropna(subset=['population'], inplace=True)

Now let's replace NaN values in number of cafes with 0s (assuming if foursquare doesn't show them, they're not there!)

In [857]:
for i in range(len(df['number_of_cafes'])):
    try: 
        if math.isnan(df.iloc[i,11])==True:
            df.iloc[i,11]=0
    except TypeError:
        continue
In [858]:
# replace the NaN values in the party vote columns with party averages for the whole of Berlin:
SPD = 0.248
CDU = 0.198
GRÜNE = 0.158
LINKE = 0.154
AFD = 0.141
FDP = 0.056

for i in range(len(df['SPD'])):
    try: 
        if math.isnan(df.iloc[i,5])==True:
            df.iloc[i,5]=SPD
            df.iloc[i,6]=CDU
            df.iloc[i,7]=GRÜNE
            df.iloc[i,8]=LINKE
            df.iloc[i,9]=FDP
            df.iloc[i,10]=AFD
    except TypeError:
        continue
In [859]:
df.head(20)
Out[859]:
latitude longitude income population Kiez SPD CDU GRÜNE DIE LINKE FDP AfD number_of_cafes
PLZ
10115 52.5323 13.3846 3118.0 26274.0 Mitte 0.244760 0.168357 0.262677 0.125085 0.090264 0.078431 21.0
10117 52.5170 13.3872 3673.0 15531.0 Mitte 0.230521 0.156170 0.177461 0.216475 0.072902 0.113700 69.0
10119 52.5305 13.4053 3018.0 19670.0 MittePankow 0.213865 0.122930 0.336514 0.174011 0.074937 0.044906 68.0
10178 52.5213 13.4096 2717.0 14466.0 Friedrichsh.-Kreuzb.Mitte 0.253238 0.120466 0.102332 0.312824 0.040803 0.139896 103.0
10179 52.5122 13.4164 2583.0 23970.0 Friedrichsh.-Kreuzb.Mitte 0.259311 0.113974 0.145477 0.279194 0.041025 0.125175 20.0
10243 52.5123 13.4394 2428.0 30655.0 Friedrichsh.-Kreuzb. 0.185139 0.080490 0.259760 0.245244 0.031075 0.087722 6.0
10245 52.5007 13.4647 2439.0 33509.0 Friedrichsh.-Kreuzb. 0.171369 0.077022 0.312147 0.216711 0.035244 0.067221 6.0
10247 52.5161 13.4656 2463.0 39491.0 Friedrichsh.-Kreuzb.Pankow 0.156329 0.065162 0.327305 0.221043 0.025407 0.058736 25.0
10249 52.5238 13.4428 2436.0 28885.0 Friedrichsh.-Kreuzb.Pankow 0.205592 0.092083 0.210302 0.274578 0.037836 0.112293 6.0
10315 52.5132 13.5148 2151.0 33424.0 Lichtenberg 0.227868 0.111517 0.071133 0.309392 0.024862 0.204617 4.0
10317 52.4979 13.4908 2342.0 23027.0 Friedrichsh.-Kreuzb.Lichtenberg 0.222026 0.102065 0.189577 0.270600 0.034022 0.121731 3.0
10318 52.4835 13.5287 2690.0 27217.0 Lichtenberg 0.269375 0.160280 0.101124 0.258043 0.033228 0.145587 8.0
10319 52.4992 13.5188 2104.0 24481.0 Lichtenberg 0.248000 0.198000 0.158000 0.154000 0.056000 0.141000 0.0
10365 52.5206 13.4969 2278.0 27052.0 Lichtenberg 0.213463 0.092585 0.106927 0.321659 0.026829 0.185659 0.0
10367 52.5246 13.4821 2192.0 21735.0 Lichtenberg 0.225220 0.113551 0.136763 0.274153 0.039523 0.156211 1.0
10369 52.5295 13.4695 2286.0 20386.0 Lichtenberg 0.234551 0.102902 0.112843 0.260881 0.030091 0.196131 4.0
10405 52.5352 13.4257 2773.0 32065.0 Pankow 0.257936 0.110728 0.245075 0.208185 0.046244 0.067992 39.0
10407 52.5336 13.4492 2555.0 25254.0 Pankow 0.180162 0.097166 0.281377 0.232794 0.046559 0.087045 4.0
10409 52.5443 13.4414 1942.0 23033.0 Pankow 0.246957 0.085797 0.139130 0.263768 0.024348 0.153043 5.0
10435 52.5378 13.4112 2941.0 17400.0 MittePankow 0.244661 0.105743 0.308314 0.205681 0.062409 0.000000 53.0

GREAT! Now we have a cleaned-up dataset. We can start analyzing the data!

PART II: Run cluster analysis based on ZIP codes

We'll do K-means clustering here. To find the optimal number of clusters, we'll utilize the "elbow method". Before we do that, the relevant colums are income, population, party votes and number of cafes per PLZ. Let's select & standardize these.

In [860]:
from sklearn.preprocessing import StandardScaler
X = df[['income','population','SPD','CDU','GRÜNE','DIE LINKE','FDP','AfD','number_of_cafes']].values
scaler = StandardScaler().fit(X)
# Standardize the columns.
df_stan = df.copy()
X_stan = scaler.transform(X)
df_stan[['income','population','SPD','CDU','GRÜNE','DIE LINKE',
         'FDP','AfD','number_of_cafes']] = X_stan
df_stan.head()
Out[860]:
latitude longitude income population Kiez SPD CDU GRÜNE DIE LINKE FDP AfD number_of_cafes
PLZ
10115 52.5323 13.3846 0.795168 0.952178 Mitte -0.210863 -0.235586 1.075738 -0.303655 1.138978 -0.982463 0.833516
10117 52.5170 13.3872 2.028190 -0.566072 Mitte -0.543981 -0.388277 0.120688 0.889122 0.565641 -0.430709 3.957918
10119 52.5305 13.4053 0.573001 0.018871 MittePankow -0.933630 -0.804735 1.903248 0.334899 0.632851 -1.506950 3.892826
10178 52.5213 13.4096 -0.095719 -0.716582 Friedrichsh.-Kreuzb.Mitte -0.012519 -0.835603 -0.721307 2.146605 -0.494324 -0.020876 6.171036
10179 52.5122 13.4164 -0.393421 0.626566 Friedrichsh.-Kreuzb.Mitte 0.129548 -0.916949 -0.237758 1.707682 -0.486999 -0.251184 0.768425

Now we can find out the ideal cluster number via elbow:

In [864]:
import matplotlib.pyplot as plt
from sklearn.cluster import KMeans
wcss = []
for i in range(1, 11):
    kmeans = KMeans(n_clusters = i, init = 'k-means++', random_state = 42)
    kmeans.fit(X_stan)
    wcss.append(kmeans.inertia_)
plt.plot(range(1, 11), wcss)
plt.title('The Elbow Method')
plt.xlabel('Number of clusters')
plt.ylabel('WCSS')
plt.show()

So, K=4 seems to be a reasonable number for clusters, let's see what our analysis tells us:

In [972]:
kmeans = KMeans(n_clusters = 6, init = 'k-means++', random_state =  42)
y_kmeans = kmeans.fit_predict(X_stan)
In [973]:
y_kmeans
Out[973]:
array([1, 5, 5, 5, 4, 4, 4, 4, 4, 2, 4, 2, 4, 2, 4, 2, 4, 4, 4, 5, 5, 4,
       4, 1, 1, 1, 4, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1,
       1, 1, 0, 0, 1, 1, 1, 1, 5, 1, 1, 5, 4, 5, 5, 4, 4, 5, 4, 4, 4, 4,
       3, 4, 1, 1, 1, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 0, 3, 0, 3, 1, 3,
       3, 0, 0, 3, 3, 1, 3, 4, 3, 3, 3, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
       2, 2, 2, 2, 2, 2, 2, 2, 4, 1, 2, 2, 1, 2, 2, 2, 2, 2, 2, 4, 2, 2,
       2, 2, 2, 2, 2, 2, 4, 4, 4, 1, 1, 4, 1, 4, 4, 3, 3, 3, 3, 1, 3, 3,
       0, 0, 3, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1,
       0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], dtype=int32)
In [974]:
df['cluster'] = pd.Series(y_kmeans, index=df.index)
In [975]:
df.head()
Out[975]:
latitude longitude income population Kiez SPD CDU GRÜNE DIE LINKE FDP AfD number_of_cafes cluster PLZ
PLZ
10115 52.5323 13.3846 3118.0 26274.0 Mitte 0.244760 0.168357 0.262677 0.125085 0.090264 0.078431 21.0 1 10115
10117 52.5170 13.3872 3673.0 15531.0 Mitte 0.230521 0.156170 0.177461 0.216475 0.072902 0.113700 69.0 5 10117
10119 52.5305 13.4053 3018.0 19670.0 MittePankow 0.213865 0.122930 0.336514 0.174011 0.074937 0.044906 68.0 5 10119
10178 52.5213 13.4096 2717.0 14466.0 Friedrichsh.-Kreuzb.Mitte 0.253238 0.120466 0.102332 0.312824 0.040803 0.139896 103.0 5 10178
10179 52.5122 13.4164 2583.0 23970.0 Friedrichsh.-Kreuzb.Mitte 0.259311 0.113974 0.145477 0.279194 0.041025 0.125175 20.0 4 10179
Let's investigate the clusters:
In [976]:
df.groupby(['cluster']).mean()
Out[976]:
latitude longitude income population SPD CDU GRÜNE DIE LINKE FDP AfD number_of_cafes PLZ
cluster
0 52.484915 13.284307 3543.296296 14144.000000 0.250494 0.282043 0.164814 0.066754 0.105535 0.111677 6.962963 12753.370370
1 52.497458 13.344867 2763.250000 16075.187500 0.275193 0.175457 0.225062 0.120458 0.062646 0.101202 7.354167 11824.541667
2 52.513995 13.532224 2564.736842 21381.421053 0.222846 0.164129 0.072669 0.234640 0.023014 0.231119 1.263158 12515.368421
3 52.507223 13.318334 2623.857143 20346.542857 0.295699 0.259662 0.090003 0.072123 0.066926 0.181405 0.742857 13017.342857
4 52.515734 13.432853 2451.250000 25743.406250 0.230387 0.103602 0.225818 0.219064 0.034831 0.104523 10.437500 11581.406250
5 52.512290 13.413050 2837.600000 21002.100000 0.205435 0.088303 0.328085 0.215162 0.040880 0.048443 60.800000 10725.700000

The cluster analysis reveals some interesting insights: Cluster 0: High-income / conseravtive neighborhood with low population: The PLZ areas in this cluster are parts of town with detached houses with high-income households who tend to elect conservative / center-right. Could potentially work for a high-end cafe if the design & interior is a bit more on the traditional side. Cluster 1: Average-income "green" residential areas: Similar to cluster 0 in terms of population and coffe shop density, while the political opinion is a bit more tilted toward the green party and the income is in-line with city average. Probably equally attractive as cluster 0, but the clientele will be completely different - need more vegan stuff!! Cluster 2: Far-right / low income neighborhoods: Parts of town with low household income, tendency to elect far-right, very low number of coffe shops. Also high % for far-left. Former East-Berlin neighborhoods. Not interesting. Cluster 3: Mixed neighborhoods: These neighborhoods are quite heterogeneous in that there is a large social democratic crowd but also a high number of far-right people. Number of cafes quite low, so also not really interesting for our coffe shop idea. Cluster 4: "Poor, but sexy": Alternative cluster: This is interesting. Lower purchasing power, highly cosmopolitan, progressive and high-population. Probably student neighborhoods. Definitely interesting. Cluster 5: Affluent porgressive green neighbohoods: This is the ideal cluster for our idea. Former leftie / green students who now are affluent and love to spend time and money in alternative but expensive coffe shops!

PART III: Visualize results

Let's create a folium choropleth map with the PLZ / zip codes and their respective clusters:

In [984]:
df2=df
df2['PLZ']=df2.index
df2=df2.astype({'PLZ':str})
m = folium.Map(location=[52.52, 13.4], zoom_start=11)
folium.Choropleth(
    geo_data=plz_geo,
    data=df2,
    columns=['PLZ','cluster'],
    key_on='properties.plz',
    fill_color='Spectral',
    fill_opacity=0.7,
    line_opacity=0.5,
    reset=True
).add_to(m)

m
Out[984]:
Make this Notebook Trusted to load map: File -> Trust Notebook

Awesome: Cluster 5 was the most interesting for us. Seems like the ideal spots for our coffee shop are in central part of former East-Berlin where affluent alternatives dominate, as well as in Kreuzberg. The green areas would be a second choice - so called "poor but sexy" alternative neighborhoods. We now have favorite locations for our new café!

Here's a bonus analysis: Income by zip code. Seems like richer parts of town elect conservative!

In [986]:
df2=df
df2['PLZ']=df2.index
df2=df2.astype({'PLZ':str})
m = folium.Map(location=[52.52, 13.4], zoom_start=11)
folium.Choropleth(
    geo_data=plz_geo,
    data=df2,
    columns=['PLZ','income'],
    key_on='properties.plz',
    fill_color='Blues',
    fill_opacity=0.7,
    line_opacity=0.5,
    reset=True
).add_to(m)

m
Out[986]:
Make this Notebook Trusted to load map: File -> Trust Notebook
In [ ]:
 
In [ ]: